22 lines
367 B
C
22 lines
367 B
C
/* $Id: debug.h,v 1.3 1994/05/13 06:10:17 mycroft 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
|
|
|