aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_CommandLine.F90
blob: 7f5333890ee8fbca2c8f3b49719f6cb204f669d8 (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
#include "cctk.h"

module cctk_CommandLine
  implicit none

  interface

! This subroutine has been renamed
! because it conflicts with the name of this module
     subroutine CCTK_GetCommandLine (argc, outargv)
       implicit none
       integer      argc
       CCTK_POINTER outargv
     end subroutine CCTK_GetCommandLine

     subroutine CCTK_ParameterFileName (ierr, filename, filenamelen)
       implicit none
       integer      ierr
       character(*) filename
       integer      filenamelen
     end subroutine CCTK_ParameterFileName

  end interface

end module cctk_CommandLine