aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Schedule.F90
blob: f2d3fc408742fd4e0ff97a50c65513d25f418c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "cctk.h"

module cctk_Schedule
  implicit none

  interface

     subroutine CCTK_SchedulePrint (ierr, where)
       implicit none
       integer      ierr
       character(*) where
     end subroutine CCTK_SchedulePrint

     subroutine CCTK_SchedulePrintTimes (ierr, where)
       implicit none
       integer      ierr
       character(*) where
     end subroutine CCTK_SchedulePrintTimes
     
  end interface
  
end module cctk_Schedule