home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / AmigaSDL / amisrc / mydebug.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-08-15  |  206 b   |  15 lines

  1. #ifndef MYDEBUG
  2.  
  3. #ifndef NO_AMIGADEBUG
  4. #define D(x) x
  5. #define bug kprintf
  6. extern void kprintf(const char *,...);
  7. #else
  8. #define D(x)
  9. #endif
  10.  
  11. #define MAKE_HIT() {char *a=NULL,b;b=*a;}
  12.  
  13. #define MYDEBUG
  14. #endif
  15.