PartMC  2.8.0
sys.F90
Go to the documentation of this file.
1 ! Copyright (C) 2005-2016 Nicole Riemer and Matthew West
2 ! Licensed under the GNU General Public License version 2 or (at your
3 ! option) any later version. See the file COPYING for details.
4 
5 !> \file
6 !> The pmc_sys module.
7 
8 !> Indirection over stop
9 module pmc_sys
10 
11 contains
12 
13 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14 
15  !> Stops the program
16  subroutine pmc_stop(code)
17  integer, intent(in) :: code
18  stop code
19  end subroutine
20 
21 end module
pmc_sys::pmc_stop
subroutine pmc_stop(code)
Stops the program.
Definition: sys.F90:17
pmc_sys
Indirection over stop.
Definition: sys.F90:9