aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/CoordinateStuff.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CoordinateStuff.c b/src/CoordinateStuff.c
index b6b0e33..e9a2b9e 100644
--- a/src/CoordinateStuff.c
+++ b/src/CoordinateStuff.c
@@ -9,6 +9,10 @@ static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusWave_WaveBinarySource_CoordinateStuff_c)
+int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d);
+int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d);
+
+
/*@@
@routine IndexFloor
@date Fri Jan 7 10:34:29 2000
@@ -32,7 +36,6 @@ CCTK_FILEVERSION(CactusWave_WaveBinarySource_CoordinateStuff_c)
int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d)
{
int index_low,idummy;
- char *message;
CCTK_REAL cmin,cmax;
if (d==0)
@@ -98,7 +101,6 @@ int IndexFloorC(cGH *GH, CCTK_REAL coord_value, int d)
int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d)
{
int index_up,idummy;
- char *message;
CCTK_REAL cmin,cmax;
if (d==0)
@@ -139,5 +141,3 @@ int IndexCeilC(cGH *GH, CCTK_REAL coord_value, int d)
}
return(index_up);
}
-
-