]> Shamusworld >> Repos - rmac/blobdiff - error.h
Fix for "*" getting bad section attributes, reported by A. Seed.
[rmac] / error.h
diff --git a/error.h b/error.h
index 2e6728419a9f36b3663bd6604db32452ed372034..06d9e466f0ad4eafe9a43ecd50724788617393b9 100644 (file)
--- a/error.h
+++ b/error.h
@@ -3,7 +3,7 @@
 // ERROR.H - Error Handling
 // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
-// Source Utilised with the Kind Permission of Landon Dyer
+// Source utilised with the kind permission of Landon Dyer
 //
 
 #ifndef __ERROR_H__
 
 // Globals, externals etc
 extern int errcnt;
-extern char *err_fname;
+extern char * err_fname;
 
 // Prototypes
-int error(char *);
-int errors(char *, char *);
-int fatal(char *);
-int warn(char *);
-int warns(char *, char *);
-int warni(char *, unsigned);
+int error(const char *);
+int errors(const char *, char *);
+int fatal(const char *);
+int warn(const char *);
+int warns(const char *, char *);
+int warni(const char *, unsigned);
 int interror(int);
-void cantcreat(char *);
+void cantcreat(const char *);
 void err_setup(void);
+int at_eol(void);
 
 #endif // __ERROR_H__