home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Der Mediaplex Sampler - Die 6 von Plex
/
6_v_plex.zip
/
6_v_plex
/
DISK5
/
DOS_22
/
ZOO210S.ZIP
/
DEBUG.H
< prev
next >
Wrap
C/C++ Source or Header
|
1991-07-12
|
646b
|
32 lines
/* @(#) debug.h 2.1 87/12/25 12:22:02 */
/*
The contents of this file are hereby released to the public domain.
-- Rahul Dhesi 1986/11/14
defines conditional function calls
Usage: The statement
debug((printf("y = %d\n", y)))
may be placed anywhere where two or more statements could be used. It will
print the value of y at that point.
Conditional compilation:
if DEBUG is defined
define the macro debug(X) to execute statement X
else
define the macro debug(X) to be null
endif
*/
#ifdef DEBUG
#define debug(x) x;
#else
#define debug(x)
#endif