summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-14 11:32:13 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-14 11:32:13 +0000
commit9f3b334825b06feb87f9e067237404e6bcd444f1 (patch)
treebb51f23e0a55153049d0a46dbbbce3a55e8b5824 /src/main
parentc7b9c0535d294b1e2aaa31531f657a34802406a4 (diff)
Changing to new macros for FORTRAN_STRING
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2357 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main')
-rw-r--r--src/main/WarnLevel.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index 5e36b787..bcbbddc9 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -34,13 +34,13 @@ CCTK_FILEVERSION(main_WarnLevel_c)
cctk_WarnLevel.h and cctki_WarnLevel.h
here only follow the fortran wrapper prototypes */
void CCTK_FCALL CCTK_FNAME (CCTK_Info)
- (TWO_FORTSTRINGS_ARGS);
+ (TWO_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME (CCTK_Warn)
(const int *level,
const int *line,
- THREE_FORTSTRINGS_ARGS);
+ THREE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME (CCTK_ParamWarn)
- (TWO_FORTSTRINGS_ARGS);
+ (TWO_FORTSTRING_ARG);
int CCTK_FCALL CCTK_FNAME (CCTK_MessageFormat)
(ONE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME (CCTKi_ExpectError)
@@ -48,13 +48,13 @@ void CCTK_FCALL CCTK_FNAME (CCTKi_ExpectError)
const int *err,
const int *warnonerr,
const int *line,
- THREE_FORTSTRINGS_ARGS);
+ THREE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME (CCTKi_ExpectOK)
(const int *in,
const int *ok,
const int *warnonerr,
const int *line,
- THREE_FORTSTRINGS_ARGS);
+ THREE_FORTSTRING_ARG);
void CCTK_FCALL CCTK_FNAME (CCTKi_NotYetImplemented)
(ONE_FORTSTRING_ARG);
@@ -114,9 +114,9 @@ int CCTK_Info (const char *thorn, const char *message)
}
void CCTK_FCALL CCTK_FNAME (CCTK_Info)
- (TWO_FORTSTRINGS_ARGS)
+ (TWO_FORTSTRING_ARG)
{
- TWO_FORTSTRINGS_CREATE (thorn, message)
+ TWO_FORTSTRING_CREATE (thorn, message)
CCTK_Info (thorn, message);
free (thorn);
free (message);
@@ -222,9 +222,9 @@ int CCTK_Warn (int level,
void CCTK_FCALL CCTK_FNAME (CCTK_Warn)
(const int *level,
const int *line,
- THREE_FORTSTRINGS_ARGS)
+ THREE_FORTSTRING_ARG)
{
- THREE_FORTSTRINGS_CREATE (file, thorn, message)
+ THREE_FORTSTRING_CREATE (file, thorn, message)
CCTK_Warn (*level, *line, file, thorn, message);
free (thorn);
free (message);
@@ -407,9 +407,9 @@ int CCTK_ParamWarn (const char *thorn, const char *message)
}
void CCTK_FCALL CCTK_FNAME (CCTK_ParamWarn)
- (TWO_FORTSTRINGS_ARGS)
+ (TWO_FORTSTRING_ARG)
{
- TWO_FORTSTRINGS_CREATE (thorn, message)
+ TWO_FORTSTRING_CREATE (thorn, message)
CCTK_ParamWarn (thorn, message);
free (thorn);
free (message);
@@ -667,9 +667,9 @@ void CCTK_FCALL CCTK_FNAME (CCTKi_ExpectError)
const int *err,
const int *warnonerr,
const int *line,
- THREE_FORTSTRINGS_ARGS)
+ THREE_FORTSTRING_ARG)
{
- THREE_FORTSTRINGS_CREATE (file, thorn, message)
+ THREE_FORTSTRING_CREATE (file, thorn, message)
CCTKi_ExpectError (*in, *err, *warnonerr, *line, file, thorn, message);
free (file);
free (thorn);
@@ -743,9 +743,9 @@ void CCTK_FCALL CCTK_FNAME (CCTKi_ExpectOK)
const int *ok,
const int *warnonerr,
const int *line,
- THREE_FORTSTRINGS_ARGS)
+ THREE_FORTSTRING_ARG)
{
- THREE_FORTSTRINGS_CREATE (file, thorn, message)
+ THREE_FORTSTRING_CREATE (file, thorn, message)
CCTKi_ExpectOK (*in, *ok, *warnonerr, *line, file, thorn, message);
free (file);
free (thorn);