aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_File.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/cctk_File.F90')
-rw-r--r--src/cctk_File.F9028
1 files changed, 28 insertions, 0 deletions
diff --git a/src/cctk_File.F90 b/src/cctk_File.F90
new file mode 100644
index 0000000..c3335ac
--- /dev/null
+++ b/src/cctk_File.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_File.h
+ @enddesc
+ @version $Header$
+@@*/
+
+#include "cctk.h"
+
+module cctk_File
+ implicit none
+
+ interface
+
+ subroutine CCTK_CreateDirectory (ierr, mode, pathname)
+ implicit none
+ integer ierr
+ integer mode
+ character(*) pathname
+ end subroutine CCTK_CreateDirectory
+
+ end interface
+
+end module cctk_File