home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / vbcc / machines / amiga68k / include / assert.h next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  233 b   |  13 lines

  1. #ifndef __ASSERT_H
  2. #define __ASSERT_H 1
  3. #endif
  4.  
  5. #undef assert
  6.  
  7. #ifndef NDEBUG
  8. #define assert(exp) ((void)((exp)?0:fprintf(stderr,"Assertion failed: %d, file %s, line %d\n",(exp),__FILE__,__LINE__)))
  9. #else
  10. #define assert(exp)
  11. #endif
  12.  
  13.