home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / progut~1 / proff.zoo / debug.h next >
Encoding:
C/C++ Source or Header  |  1987-07-15  |  123 b   |  12 lines

  1. /*
  2. #define DEBUG
  3. #define PROFILE
  4. */
  5.  
  6. #ifdef PROFILE
  7. #define dprintf(str)    printf((str));
  8. #else
  9. #define dprintf(str)
  10. #endif
  11.  
  12.