Next batch.

This commit is contained in:
Manoel Trapier
2013-03-08 19:13:03 +01:00
committed by Manoël Trapier
parent 60330b05cd
commit 3d1d1277b7
34 changed files with 568 additions and 603 deletions

View File

@@ -22,8 +22,7 @@
int err_occurred;
err_hdr(s)
char *s;
void err_hdr(char *s)
{
if (FileName) {
fprint(ERROUT, "\"%s\", line %d: %s", FileName, LineNumber, s);
@@ -33,7 +32,7 @@ err_hdr(s)
#if __STDC__
/*VARARGS1*/
error(char *fmt, ...)
void error(char *fmt, ...)
{
va_list ap;
@@ -46,7 +45,7 @@ error(char *fmt, ...)
}
/*VARARGS1*/
warning(char *fmt, ...)
void warning(char *fmt, ...)
{
va_list ap;
@@ -58,7 +57,7 @@ warning(char *fmt, ...)
}
/*VARARGS1*/
crash(char *fmt, ...)
void crash(char *fmt, ...)
{
va_list ap;
@@ -71,7 +70,7 @@ crash(char *fmt, ...)
}
/*VARARGS1*/
fatal(char *fmt, ...)
void fatal(char *fmt, ...)
{
va_list ap;