mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
15 lines
334 B
//
|
|
// SYNOPSIS: One debug statememt in time can save nine.
|
|
// Last modified Time-stamp: <25-Nov-96 17:49>
|
|
// History:
|
|
// MohsinA, 14-Nov-96.
|
|
//
|
|
|
|
#ifdef DBG
|
|
#define DEBUG_PRINT(S) printf S
|
|
#define TRACE_PRINT(S) if( trace ){ printf S; }else{}
|
|
#else
|
|
#define DEBUG_PRINT(S) /* nothing */
|
|
#define TRACE_PRINT(S) /* nothing */
|
|
#endif
|
|
|