scyther/src/error.h
ccremers 1c345c4955 - Modified error reporting setup.
- Updated some of the error reporting code, but not all.
2004-06-13 21:42:29 +00:00

10 lines
148 B
C

#ifndef ERROR
#define ERROR
void error_die (void);
void error_pre (void);
void error_post (char *fmt, ... );
void error (char *fmt, ... );
#endif