summaryrefslogtreecommitdiff
path: root/src/main/GroupsOnGH.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-18 20:39:18 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-18 20:39:18 +0000
commit4cad1c2125547f4793df957cf9f7479059016784 (patch)
tree2a36fe610866555eb2eee545df15bb85e5c198e8 /src/main/GroupsOnGH.c
parent81e6ceac0f76f0e93f65f6ab9fa8b7158ad2128f (diff)
Missing prototypes for fortran versions of CCTK_ActiveTimeLevels
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3297 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/GroupsOnGH.c')
-rw-r--r--src/main/GroupsOnGH.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/main/GroupsOnGH.c b/src/main/GroupsOnGH.c
index 052bee17..9fa6c8db 100644
--- a/src/main/GroupsOnGH.c
+++ b/src/main/GroupsOnGH.c
@@ -170,6 +170,16 @@ void CCTK_FCALL CCTK_FNAME (CCTK_GroupbboxVN)
const int *size,
int *bbox,
ONE_FORTSTRING_ARG);
+void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsVI)
+ (int *num, const cGH *cctkGH, const int *var);
+void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsVN)
+ (int *num, const cGH *cctkGH, ONE_FORTSTRING_ARG);
+void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsGI)
+ (int *num, const cGH *cctkGH, const int *var);
+void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsGN)
+ (int *num, const cGH *cctk, ONE_FORTSTRING_ARG);
+void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevels)
+ (int *num, const cGH *cctkGH, ONE_FORTSTRING_ARG);
@@ -550,7 +560,7 @@ int CCTK_ActiveTimeLevelsGI(const cGH *GH, int gindex)
void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsGI)
(int *timelevels,
const cGH *cctkGH,
- int *gindex)
+ const int *gindex)
{
*timelevels = CCTK_ActiveTimeLevelsGI (cctkGH, *gindex);
}
@@ -607,7 +617,7 @@ int CCTK_ActiveTimeLevelsVI(const cGH *GH, int vindex)
void CCTK_FCALL CCTK_FNAME (CCTK_ActiveTimeLevelsVI)
(int *timelevels,
const cGH *cctkGH,
- int *vindex)
+ const int *vindex)
{
*timelevels = CCTK_ActiveTimeLevelsVI (cctkGH, *vindex);
}