home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / ASSERT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  414 b   |  20 lines

  1. /*    assert.h
  2.  
  3.     assert macro
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8.  
  9. #include <stdio.h>    /*  fprintf() prototype & 'stderr' definition */
  10. #include <stdlib.h>    /* abort() prototype */
  11.  
  12.  
  13. #if    !defined(NDEBUG)
  14. #define assert(p)    if(!(p)){fprintf(stderr,\
  15.         "Assertion failed: %s, file %s, line %d\n",\
  16.         #p, __FILE__, __LINE__);abort();}
  17. #else
  18. #define assert(p)
  19. #endif
  20.