This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / sys / netiso / xebec / debug.h
CommitLineData
78ed81a3 1/*
2 * from: debug.h,v 2.1 88/09/19 12:56:16 nhall Exp
3 * $Id$
4 */
15637ed4
RG
5
6#define OUT stdout
7
8extern int debug[128];
9
10#ifdef DEBUG
11extern int column;
12
13#define IFDEBUG(letter) \
14 if(debug['letter']) {
15#define ENDDEBUG ; (void) fflush(stdout);}
16
17#else
18
19#define STAR *
20#define IFDEBUG(letter) //*beginning of comment*/STAR
21#define ENDDEBUG STAR/*end of comment*//
22
23#endif DEBUG
24