17 lines
284 B
Plaintext
17 lines
284 B
Plaintext
/*
|
||
* $Id$
|
||
*/
|
||
|
||
//*******************************************************************
|
||
// debug.ch, DEBUG ‚s a PDEBUG makr¢.
|
||
|
||
// #define DEBUG
|
||
#ifdef DEBUG
|
||
#define PDEBUG(x) x
|
||
#else
|
||
#define PDEBUG(x)
|
||
#endif
|
||
|
||
//*******************************************************************
|
||
|