From c9a154600b8179e32a7ab762b16f8497bc0605be Mon Sep 17 00:00:00 2001 From: eschnett Date: Thu, 20 Jan 2011 21:45:44 +0000 Subject: Correct function signature git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/AHFinder/trunk@405 89daf98e-ef62-4674-b946-b8ff9de2216c --- src/Startup.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Startup.c b/src/Startup.c index de43bf6..bb556db 100644 --- a/src/Startup.c +++ b/src/Startup.c @@ -19,7 +19,7 @@ int AHFinder_TimeForOutput (const cGH *GH, int vindex); /******************************************************************** ******************** External Routines ************************ ********************************************************************/ -void AHFinder_Startup (void); +int AHFinder_Startup (void); /*@@ @routine AHfinder_Startup @@ -32,12 +32,14 @@ void AHFinder_Startup (void); @enddesc @calls CCTK_RegisterGHExtensionSetupGH @@*/ -void AHFinder_Startup (void) +int AHFinder_Startup (void) { int handle; handle = CCTK_RegisterIOMethod ("AHFinder"); CCTK_RegisterIOMethodTimeToOutput (handle, AHFinder_TimeForOutput); + + return 0; } -- cgit v1.2.3