aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Startup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index a368a0b..e3a21ce 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -19,7 +19,7 @@ static const char *rcsid = "$Header$";
CCTK_FILEVERSION(CactusElliptic_EllBase_Startup_c)
-void Ell_RegisterBaseEqTypes(cGH *GH);
+int Ell_RegisterBaseEqTypes(void);
/*@@
@@ -40,7 +40,7 @@ void Ell_RegisterBaseEqTypes(cGH *GH);
@@*/
-void Ell_RegisterBaseEqTypes(cGH *GH)
+int Ell_RegisterBaseEqTypes(void)
{
int Ell_RegisterEq(void (*function),const char *);
@@ -97,4 +97,5 @@ void Ell_RegisterBaseEqTypes(cGH *GH)
if (err<0) CCTK_WARN(1,"Error registering the basic elliptic classes");
+ return 0;
}