Source code of Windows XP (NT5)
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

  1. //
  2. // SYNOPSIS: One debug statememt in time can save nine.
  3. // Last modified Time-stamp: <25-Nov-96 17:49>
  4. // History:
  5. // MohsinA, 14-Nov-96.
  6. //
  7. #ifdef DBG
  8. #define DEBUG_PRINT(S) printf S
  9. #define TRACE_PRINT(S) if( trace ){ printf S; }else{}
  10. #else
  11. #define DEBUG_PRINT(S) /* nothing */
  12. #define TRACE_PRINT(S) /* nothing */
  13. #endif