Renamed the options sub-structs for more consistency. Some portab fixes.

committer: mfx <mfx> 1058221575 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-07-14 22:26:15 +00:00
parent f9054529c1
commit 48ec581539
18 changed files with 127 additions and 124 deletions
+5 -5
View File
@@ -130,7 +130,7 @@ void printErr(const char *iname, const Throwable *e)
}
void printErr(const char *iname, const char *format, ...)
void __acc_cdecl printErr(const char *iname, const char *format, ...)
{
va_list args;
char buf[1024];
@@ -143,7 +143,7 @@ void printErr(const char *iname, const char *format, ...)
}
void printWarn(const char *iname, const char *format, ...)
void __acc_cdecl printWarn(const char *iname, const char *format, ...)
{
va_list args;
char buf[1024];
@@ -200,7 +200,7 @@ void infoHeader()
info_header = 0;
}
void infoHeader(const char *format, ...)
void __acc_cdecl infoHeader(const char *format, ...)
{
if (opt->info_mode <= 0)
return;
@@ -214,7 +214,7 @@ void infoHeader(const char *format, ...)
}
void info(const char *format, ...)
void __acc_cdecl info(const char *format, ...)
{
if (opt->info_mode <= 0)
return;
@@ -229,7 +229,7 @@ void info(const char *format, ...)
}
void infoWarning(const char *format, ...)
void __acc_cdecl infoWarning(const char *format, ...)
{
if (opt->info_mode <= 0)
{