aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@6a38eb6e-646e-4a02-a296-d141613ad6c4>1999-11-30 23:43:49 +0000
committergoodale <goodale@6a38eb6e-646e-4a02-a296-d141613ad6c4>1999-11-30 23:43:49 +0000
commit26e730c9dff2757a4d85c4f4a94b64b6ccdc3bd7 (patch)
tree6f8a16c5c3fde4882a187a1bf2674d8deaeed4ac
parent299e97bd707c4a2ac4cb48997d2aeafcc36f1d34 (diff)
Added lots of missing function prototypes.
Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/Boundary/trunk@76 6a38eb6e-646e-4a02-a296-d141613ad6c4
-rw-r--r--interface.ccl2
-rw-r--r--src/CopyBoundary.c10
-rw-r--r--src/ScalarBoundary.c8
3 files changed, 15 insertions, 5 deletions
diff --git a/interface.ccl b/interface.ccl
index 63274cf..02660d5 100644
--- a/interface.ccl
+++ b/interface.ccl
@@ -4,3 +4,5 @@
implements: boundary
INCLUDES: Boundary.h in Boundary.h
+
+USES INCLUDE: Symmetry.h
diff --git a/src/CopyBoundary.c b/src/CopyBoundary.c
index 06e07c3..1ade5c6 100644
--- a/src/CopyBoundary.c
+++ b/src/CopyBoundary.c
@@ -7,6 +7,8 @@
@enddesc
@@*/
+static char *rcsid = "$Header$";
+
/*#define DEBUG_BOUND*/
#include <stdio.h>
@@ -17,14 +19,16 @@
#include <string.h>
#include "cctk.h"
-#include "cctk_parameters.h"
-#include "CactusBase/CartGrid3D/src/Symmetry.h"
#include "cctk_FortranString.h"
+#include "Boundary.h"
+#include "Symmetry.h"
+
+#include "cctk_parameters.h"
/* The actual boundary condition */
-void ApplyStatic3Di(cGH *GH,
+void ApplyCopy3Di(cGH *GH,
int *doBC,
int *lsh,
int *stencil_size,
diff --git a/src/ScalarBoundary.c b/src/ScalarBoundary.c
index bb539bf..353e3f7 100644
--- a/src/ScalarBoundary.c
+++ b/src/ScalarBoundary.c
@@ -7,6 +7,8 @@
@enddesc
@@*/
+static char *rcsid = "$Header$";
+
/*#define DEBUG_BOUND*/
#include <stdio.h>
@@ -17,10 +19,12 @@
#include <string.h>
#include "cctk.h"
-#include "cctk_parameters.h"
-#include "CactusBase/CartGrid3D/src/Symmetry.h"
#include "cctk_FortranString.h"
+#include "Boundary.h"
+#include "Symmetry.h"
+
+#include "cctk_parameters.h"
/* The actual boundary condition */