home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
COMPRESS
/
LZW.ZIP
/
DEBUG.H
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1985-08-20
|
256 b
|
9 lines
#ifdef DEBUG
#define DEBUGGER(Statements) Statements
#define WHERE(Statements) fprintf(stderr,"\n%s|%d\n",__FILE__,__LINE__);\
Statements
#else
#define DEBUGGER(Statements) /* empty */
#define WHERE(Statements) /* empty */
#endif