aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index a7ee198..c4c2bea 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -26,7 +26,7 @@ CCTK_FILEVERSION(CactusPUGHIO_IOHDF5_Startup_c)
/********************************************************************
******************** External Routines ************************
********************************************************************/
-void IOHDF5_Startup (void);
+int IOHDF5_Startup (void);
/********************************************************************
@@ -48,9 +48,10 @@ static void *SetupGH (tFleshConfig *config, int conv_level, cGH *GH);
@calls CCTK_RegisterGHExtension
CCTK_RegisterGHExtensionSetupGH
@@*/
-void IOHDF5_Startup (void)
+int IOHDF5_Startup (void)
{
CCTK_RegisterGHExtensionSetupGH (CCTK_RegisterGHExtension ("IOHDF5"),SetupGH);
+ return 0;
}