summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 13:31:39 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-02-02 13:31:39 +0000
commit32f80d71dc04282c59aa7143213ff08bbcfd27ca (patch)
treee3f179f35aa6b1dbf35d67207a16a5d5233d3390
parentb10cbac1039e9f792dbbd3cb9e51f89e0c610a3c (diff)
Added more empty subroutines
> > int CCTK_GetGroupNum(cGH *GH, const char *group) > { > return 0; > } > > int CCTK_ArrayGroupSize(cGH *GH, const char *group, int dim) > { > return 0; > } git-svn-id: http://svn.cactuscode.org/flesh/trunk@178 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/main/Groups.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/Groups.c b/src/main/Groups.c
index e9695b3c..5dd68ca7 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -30,3 +30,13 @@ int CCTK_DisableGroupCommunication(cGH *GH, const char *group)
{
return 0;
}
+
+int CCTK_GetGroupNum(cGH *GH, const char *group)
+{
+ return 0;
+}
+
+int CCTK_ArrayGroupSize(cGH *GH, const char *group, int dim)
+{
+ return 0;
+}