home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD v1.2 / amidev_cd_12.iso / devcon / milan_1991 / devcon91.3 / debug / examples / mindebug.h < prev    next >
Text File  |  1992-09-01  |  308b  |  14 lines

  1.  
  2. /**********    debug macros     ***********/
  3. #define MYDEBUG  1
  4. void kprintf(UBYTE *fmt,...);
  5. void dprintf(UBYTE *fmt,...);
  6. #define DEBTIME 0
  7. #define bug printf
  8. #if MYDEBUG
  9. #define D(x) (x); if(DEBTIME>0) Delay(DEBTIME);
  10. #else
  11. #define D(x) ;
  12. #endif /* MYDEBUG */
  13. /********** end of debug macros **********/
  14.