summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-03 12:29:11 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-02-03 12:29:11 +0000
commitf354cbc676d827e1cdabf486835fcc44911e524f (patch)
treed70ffaa56a63e3916202c3ca43fbbc543bc32315 /src
parent08646a567f5cf4895ae163ea28f8f0bcf8e28b7a (diff)
Tidying include files
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1350 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/main/Stagger.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/Stagger.c b/src/main/Stagger.c
index e9c09d47..52333b85 100644
--- a/src/main/Stagger.c
+++ b/src/main/Stagger.c
@@ -12,11 +12,9 @@
#include <string.h>
#include <ctype.h>
-#include "cctk.h"
#include "cctk_Groups.h"
#include "cctk_Types.h"
#include "cctk_FortranString.h"
-#include "cctk_ParameterFunctions.h"
#include "cctk_WarnLevel.h"
static int staggered = 0;
@@ -291,11 +289,11 @@ int CCTKi_ParseStaggerString(int dim,
char hs[7]="MMMMMM", *info;
/* change possible SHORTCUTS into the official notation, allow for dim=6 */
- if (CCTK_EQUALS(stype,"NONE"))
+ if (CCTK_Equals(stype,"NONE"))
{
strncpy(hs,"MMMMMM",dim);
}
- else if (CCTK_EQUALS(stype,"CELL")==0)
+ else if (CCTK_Equals(stype,"CELL")==0)
{
strncpy(hs,"CCCCCC",dim);
}