aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b9286e40-80fe-41ab-903a-d6b447012e1e>2001-05-18 23:11:20 +0000
committertradke <tradke@b9286e40-80fe-41ab-903a-d6b447012e1e>2001-05-18 23:11:20 +0000
commitd31298e2f2364e9cc319ee73df20672f112ecf1a (patch)
tree1dd3cd18457c1ca4aa28aa7cd80cccf8af8d13e1
parent957f9feb37e25a0bb7836c1e21f3689e59b5d83a (diff)
Fixed gcc warnings.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusWave/WaveBinarySource/trunk@22 b9286e40-80fe-41ab-903a-d6b447012e1e
-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);
}
-
-