home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / utility / poplibsr / debug.h next >
Encoding:
C/C++ Source or Header  |  1988-08-19  |  198 b   |  10 lines

  1. #ifdef DEBUGGING
  2. #define DEBUG(x)    printf x
  3. #define ENTER(x)    printf("entering: %s\n","x")
  4. #define LEAVE(x)    printf("leaving: %s\n","x")
  5. #else
  6. #define DEBUG(x)
  7. #define ENTER(x)
  8. #define LEAVE(x)
  9. #endif
  10.