aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Flesh.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/cctk_Flesh.F90')
-rw-r--r--src/cctk_Flesh.F9028
1 files changed, 28 insertions, 0 deletions
diff --git a/src/cctk_Flesh.F90 b/src/cctk_Flesh.F90
new file mode 100644
index 0000000..9104941
--- /dev/null
+++ b/src/cctk_Flesh.F90
@@ -0,0 +1,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