home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / emulation / frodo / src / debug.h < prev    next >
C/C++ Source or Header  |  1995-10-06  |  187b  |  17 lines

  1. #ifndef DEBUG_H
  2. #define DEBUG_H
  3.  
  4. #define DEBUG_DETAIL 1
  5.  
  6. extern void kprintf(UBYTE *fmt,...);
  7.  
  8. #define bug kprintf
  9.  
  10. #if DEBUG_DETAIL
  11. #define D(x) (x);
  12. #else
  13. #define D(x) ;
  14. #endif
  15.  
  16. #endif
  17.