home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / t / tel2305s.zip / INCLUDE / DEBUG.H < prev    next >
C/C++ Source or Header  |  1992-04-07  |  171b  |  11 lines

  1. #ifndef DEBUG_H
  2. #define DEBUG_H
  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 /*DEBUG_H*/
  11.