summaryrefslogtreecommitdiff
path: root/src/IO/FortranBindingsIO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IO/FortranBindingsIO.c')
-rw-r--r--src/IO/FortranBindingsIO.c29
1 files changed, 18 insertions, 11 deletions
diff --git a/src/IO/FortranBindingsIO.c b/src/IO/FortranBindingsIO.c
index c5d54933..2fa32e72 100644
--- a/src/IO/FortranBindingsIO.c
+++ b/src/IO/FortranBindingsIO.c
@@ -3,8 +3,9 @@
@date Thu Feb 18 14:27:18 1999
@author Gabrielle Allen
@desc
- Fortran bindings for the IO functions
+ Fortran bindings for the IO functions
@enddesc
+ @version $Id$
@@*/
#include <stdlib.h>
@@ -17,18 +18,24 @@ static const char *rcsid = "$Header$";
CCTK_FILEVERSION(IO_FortranBindingsIO_c)
-void CCTK_FCALL CCTK_FNAME(CCTK_OutputGH)
- (int *istat,cGH *GH)
+
+void CCTK_FCALL CCTK_FNAME (CCTK_OutputGH)
+ (int *istat, const cGH *GH);
+void CCTK_FCALL CCTK_FNAME (CCTKi_RegisterIOMethod)
+ (int *handle, TWO_FORTSTRING_ARG);
+
+
+void CCTK_FCALL CCTK_FNAME (CCTK_OutputGH)
+ (int *istat, const cGH *GH)
{
- *istat = CCTK_OutputGH(GH);
+ *istat = CCTK_OutputGH (GH);
}
-void CCTK_FCALL CCTK_FNAME(CCTKi_RegisterIOMethod)
- (int *handle, TWO_FORTSTRING_ARG)
+void CCTK_FCALL CCTK_FNAME (CCTKi_RegisterIOMethod)
+ (int *handle, TWO_FORTSTRING_ARG)
{
- TWO_FORTSTRING_CREATE(thorn,name);
- *handle = CCTKi_RegisterIOMethod(thorn,name);
- free(thorn);
- free(name);
+ TWO_FORTSTRING_CREATE (thorn, name);
+ *handle = CCTKi_RegisterIOMethod (thorn, name);
+ free (thorn);
+ free (name);
}
-