X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=error.h;h=a81ede7eb92c175f097d5a12da2803229b823e8a;hp=3ce58809e82b91f29751c0cc92e7abf10c18ef3a;hb=05d0350b35a6a6b255cb2a3fab7796f5d4ee4d02;hpb=5f23454f7155f0c77ea1bede3f9e60b39da99fa8 diff --git a/error.h b/error.h index 3ce5880..a81ede7 100644 --- a/error.h +++ b/error.h @@ -1,7 +1,7 @@ // -// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System +// RMAC - Reboot's Macro Assembler for all Atari computers // ERROR.H - Error Handling -// Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends +// Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source utilised with the kind permission of Landon Dyer // @@ -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);