home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / sanfrancisco_1989 / sf-devcon89.1 / commodities / include / cx / debug.h < prev    next >
Text File  |  1992-08-27  |  129b  |  11 lines

  1. /* debug.h -- define DEBUG before this include    */
  2.  
  3. #define    printf kprintf
  4.  
  5. #if DEBUG
  6. #define D(x) x
  7. #else
  8. #define D(x) ;
  9. #endif
  10.  
  11.