Removed format specification attributes for log() and debug() until

GCC is fixed to handle custom formats.
This commit is contained in:
Martin Mares 1998-07-10 08:39:34 +00:00
parent 786d0bb9e7
commit 1be52eea57

View file

@ -25,8 +25,8 @@
/* Logging and dying */
void log(char *msg, ...) __attribute__((format(printf,1,2)));
void die(char *msg, ...) __attribute__((format(printf,1,2))) NORET;
void log(char *msg, ...);
void die(char *msg, ...) NORET;
#define L_DEBUG "\001" /* Debugging messages */
#define L_INFO "\002" /* Informational messages */