aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Schedule.F90
blob: 67d12fb74c2db30b9718a20f6433433bc4ec4046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Schedule.h
  @enddesc
  @version $Header$
@@*/

#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