aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Cache.F90
blob: 25a8bbb7e5335ec37a148ebe0288f290fc31b13f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "cctk.h"

module cctk_Cache
  implicit none

  interface

     subroutine Util_CacheMalloc (pointer, index, size, realstart)
       implicit none
       CCTK_POINTER pointer
       integer      index
       integer      size
       CCTK_POINTER realstart
     end subroutine Util_CacheMalloc

  end interface

end module cctk_Cache