home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / NCSATELN / 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.