ack/lang/pc/comp/debug.h

9 lines
110 B
C
Raw Permalink Normal View History

1988-10-26 15:21:11 +00:00
/* A debugging macro
*/
#ifdef DEBUG
#define DO_DEBUG(x, y) ((x) && (y))
#else
#define DO_DEBUG(x, y)
#endif