NetBSD/sys/netiso/xebec/debug.h

22 lines
326 B
C
Raw Normal View History

/* $NetBSD: debug.h,v 1.8 2007/01/18 12:43:38 cbiere Exp $ */
#define OUT stdout
extern int debug[128];
#ifdef DEBUG
extern int column;
#define IFDEBUG(letter) \
2005-02-27 01:31:44 +03:00
if(debug['letter']) {
#define ENDDEBUG ; (void) fflush(stdout);}
2005-02-27 01:31:44 +03:00
#else
#define STAR *
#define IFDEBUG(letter) {
#define ENDDEBUG ; }
2002-05-16 23:30:41 +04:00
#endif /* DEBUG */