home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MISC / NETWORK / TEL23SRC.ZIP / INCLUDE / DEBUG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-07-02  |  168 b   |  11 lines

  1. #ifndef DEBUGH
  2. #define DEBUGH
  3.  
  4. #ifdef DEBUG
  5. # define BUG(__s) printf("%s[%d]: %s\n",__FILE__,__LINE__,__s);
  6. #else
  7. # define BUG(__s)
  8. #endif
  9.  
  10. #endif /*DEBUGH*/
  11.