Drop -Werror
[pmc.git] / debug.h
blob55153c4513ee47d050a56d95b6e430c6a751e0e9
1 #ifndef DEBUG_H
2 #define DEBUG_H
4 #include <stdio.h>
6 int debug_open(void);
7 void debug_close(void);
9 #define debug_print(fmt, args...) \
10 if (_debug) do {\
11 fprintf(_debug, fmt, ##args); \
12 fflush(_debug); \
13 } while(0)
15 extern FILE *_debug;
17 #endif