home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_06 / 2n06018b < prev    next >
Text File  |  1991-04-30  |  214b  |  10 lines

  1.  * dh = device "handle" from snooper.h
  2.  * fn = user function (usually d_printf())
  3.  */
  4.  
  5. #ifndef NDEBUG
  6. #define __BREAK(dh,fn)  { d_break(dh); fn; d_exec(); }
  7. #else
  8. #define __BREAK(dh,fn)  ((void) 0)
  9. #endif
  10.