]> Shamusworld >> Repos - rmac/blobdiff - error.h
Fixed bad char reporting, revamp of the error/warning system.
[rmac] / error.h
diff --git a/error.h b/error.h
index 0e90b25dc2f81d7af11a300a4a89530d76366293..a81ede7eb92c175f097d5a12da2803229b823e8a 100644 (file)
--- a/error.h
+++ b/error.h
@@ -18,12 +18,9 @@ extern int errcnt;
 extern char * err_fname;
 
 // Exported functions
-int error(const char *);
-int errors(const char *, char *);
+int error(const char *, ...);
+int warn(const char *, ...);
 int fatal(const char *);
-int warn(const char *);
-int warns(const char *, char *);
-int warni(const char *, unsigned);
 int interror(int);
 void cantcreat(const char *);
 void err_setup(void);