home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / COMPRESS / LZW.ZIP / DEBUG.H next >
Encoding:
C/C++ Source or Header  |  1985-08-20  |  256 b   |  9 lines

  1. #ifdef DEBUG
  2. #define DEBUGGER(Statements) Statements
  3. #define WHERE(Statements) fprintf(stderr,"\n%s|%d\n",__FILE__,__LINE__);\
  4.             Statements
  5. #else
  6. #define DEBUGGER(Statements) /* empty */
  7. #define WHERE(Statements) /* empty */
  8. #endif
  9.