aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Cache.F90
blob: 388e4a5c325e5b3923ce031722e87c32501cdce5 (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
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Cache.h
  @enddesc
  @version $Header$
@@*/

#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