22 lines
373 B
C
22 lines
373 B
C
/* $NetBSD: debug.h,v 1.6 2005/02/26 22:39:49 perry Exp $ */
|
|
|
|
#define OUT stdout
|
|
|
|
extern int debug[128];
|
|
|
|
#ifdef DEBUG
|
|
extern int column;
|
|
|
|
#define IFDEBUG(letter) \
|
|
if(debug['letter']) {
|
|
#define ENDDEBUG ; (void) fflush(stdout);}
|
|
|
|
#else
|
|
|
|
#define STAR *
|
|
#define IFDEBUG(letter) //*beginning of comment*/STAR
|
|
#define ENDDEBUG STAR/*end of comment*//
|
|
|
|
#endif /* DEBUG */
|
|
|