#ifndef DEBUG_H #define DEBUG_H #include "boolean.h" extern boolean DEBUG; #ifdef DEBUGGING # include # define Debug(str,val) if (DEBUG) { fprintf(stderr,str,val); } # define Debugmsg(str) if (DEBUG) { fprintf(stderr,str); } # define DebugGSplusPrint(gop,str) if (DEBUG) { GSplusPrint(gop,str); } #else # define Debug(str,val) # define Debugmsg(str) # define DebugGSplusPrint(gop,str) #endif #endif /* DEBUG_H */