fix windowisms: BOOL
[rofl0r-openbor.git] / source / debug.h
blob3ecb02e682fdb787eee63805c33a51ad6cf93a33
1 #ifndef DEBUG_H
2 #define DEBUG_H
4 #ifdef DEBUG
5 #include <stdio.h>
6 # define PDEBUG(fmt, args...) do { fprintf(stderr,"DEBUG: "fmt, ## args); fflush(stderr); } while (0)
7 #else
8 # define PDEBUG(fmt, args...)
9 #endif
11 #endif