summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultInitialise.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-01 15:13:58 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-01 15:13:58 +0000
commit4a2f8a2b44f74e5108818d70f071b6341b8dea62 (patch)
treec3e6c384e7c3f24ef2913400919d8535af604d03 /src/main/CactusDefaultInitialise.c
parent44484a6f3f722cca2883b9285568ad0e5b894867 (diff)
Mainly changes to include missing header files so that there are less
warnings when all warnings switched on (also better style 8-). Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@542 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultInitialise.c')
-rw-r--r--src/main/CactusDefaultInitialise.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/main/CactusDefaultInitialise.c b/src/main/CactusDefaultInitialise.c
index 9f65fb86..710808f8 100644
--- a/src/main/CactusDefaultInitialise.c
+++ b/src/main/CactusDefaultInitialise.c
@@ -15,13 +15,19 @@
#include "flesh.h"
#include "CactusMainDefaults.h"
#include "CactusCommFunctions.h"
-#include "parameters.h"
+#include "GHExtensions.h"
#include "rfr_constants.h"
#include "CactusrfrInterface.h"
+#include "CCTK_Bindings.h"
+#include "rfrInterface.h"
+
#include "declare_parameters.h"
static char *rcsid = "$Id$";
+/* Local function prototypes */
+int CactusInitialiseGH(cGH *GH);
+
/*@@
@routine CactusDefaultInitialise
@@ -53,7 +59,7 @@ int CactusDefaultInitialise(tFleshConfig *config)
{
CCTK_AddGH(config, convergence_level, GH);
- Cactus_InitialiseGH(GH);
+ CactusInitialiseGH(GH);
convergence_level++;
};
@@ -65,7 +71,7 @@ int CactusDefaultInitialise(tFleshConfig *config)
/*@@
- @routine Cactus_InitialiseGH
+ @routine CactusInitialiseGH
@date Mon Feb 1 12:13:09 1999
@author Tom Goodale
@desc
@@ -78,7 +84,7 @@ int CactusDefaultInitialise(tFleshConfig *config)
@endhistory
@@*/
-int Cactus_InitialiseGH(cGH *GH)
+int CactusInitialiseGH(cGH *GH)
{
DECLARE_PARAMETERS