aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_FortranWrappers.F90
blob: e48b364dd7dcbe4d41b0f85faf8fd5426ae486ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "cctk.h"

module cctk_FortranWrappers
  implicit none

  interface

     subroutine CCTK_RegisterFortranWrapper (ierr, name, function)
       implicit none
       integer       ierr
       character(*)  name
       CCTK_FPOINTER function
     end subroutine CCTK_RegisterFortranWrapper

     subroutine CCTK_FortranWrapper (function, name)
       implicit none
       CCTK_FPOINTER function
       character(*)  name
     end subroutine CCTK_FortranWrapper

  end interface

end module cctk_FortranWrappers