aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Flesh.F90
blob: 91049410646acc309b413592681b9d11dd9e1dea (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
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Flesh.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_Flesh
  implicit none

  interface

     subroutine CCTK_Traverse (ierr, GH, where)
       implicit none
       integer      ierr
       CCTK_POINTER GH
       character(*) where
     end subroutine CCTK_Traverse
     
  end interface
  
end module cctk_Flesh