Merge pull request #12 from davel/davel/sqsh
[debian-nspark.git] / error.h
blob483c848d4097d179f1bd5265a161da345ad2f6dc
1 /*
2 * error/warning report function prototypes
4 * $Header: error.h 1.2 92/12/07 $
5 * $Log: error.h,v $
6 * Revision 1.2 92/12/07 17:25:36 duplain
7 * Changed include files from "xxxarg.h" to <xxxarg.h> .
8 *
9 * Revision 1.1 92/09/29 18:02:34 duplain
10 * Initial revision
14 #ifndef __ERROR_H
15 #define __ERROR_H
17 #include <stdarg.h>
19 void msg(char *fmt, ...);
20 void debug(char *fmt, ...);
21 void error(char *fmt, ...);
22 void warning(char *fmt, ...);
24 #endif /* __ERROR_H */