forked from open-atmos/PyPartMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys.F90
22 lines (18 loc) · 782 Bytes
/
sys.F90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
!###################################################################################################
! This file is a part of PyPartMC licensed under the GNU General Public License v3 (LICENSE file) #
! Copyright (C) 2022 University of Illinois Urbana-Champaign #
! Authors: https://github.com/open-atmos/PyPartMC/graphs/contributors #
!###################################################################################################
module pmc_sys
use iso_c_binding
interface
subroutine c_stop(code) bind(C)
integer, intent(in) :: code
end subroutine
end interface
contains
subroutine pmc_stop(code)
integer, intent(in) :: code
call c_stop(code)
end subroutine
end module