aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_File.F90
blob: c3335acd671150526def0bf006198dcd827d205b (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_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