home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / POLYEDIT.LZH / READER / ASSERT_.H < prev    next >
C/C++ Source or Header  |  1994-05-02  |  179b  |  11 lines

  1.  
  2. #ifndef    NDEBUG
  3.  
  4. #define    assert(EXP)    {if(!(EXP)){printf("Assertion failed: %s, file %s, line %d\n",#EXP,__FILE__,__LINE__);exit();}}
  5.  
  6. #else
  7.  
  8. #define    assert(exp)
  9.  
  10. #endif
  11.