aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_CommandLine.F90
blob: 7ca632d37c9397ce76d3e16f6bf1575cb7e880f9 (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
29
30
31
32
33
34
35
36
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_CommandLine.h
  @enddesc
  @version $Header$
@@*/

#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