scyther/src/error.h
ccremers a5efc6106a - Static run symmetry detection seems to work just fine.
- Added 'warning' call to error.h
2004-07-14 07:31:01 +00:00

11 lines
180 B
C

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