home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / shell / csh550src.lha / Custom_Headers / mindebug.h next >
Encoding:
C/C++ Source or Header  |  1993-05-13  |  308 b   |  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.