Initial support for building for RISC OS using CMake
[debian-nspark.git] / error.h
blobec6b103e060c2b1ca474e52b6cd01a838008eb20
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 error(char *fmt, ...);
20 void warning(char *fmt, ...);
22 #endif /* __ERROR_H */