home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / OS9_Unix.lzh / DEFS / assert.h next >
Text File  |  1992-09-01  |  194b  |  7 lines

  1. #ifndef assert
  2. #ifndef NDEBUG
  3. #define assert(arg) ((arg) ? 0 : (fprintf(stderr, "Assertion failed: file %s line %d.\n", __FILE__, __LINE__), exit(1)))
  4. #else
  5. #define assert(arg) (0)
  6. #endif
  7. #endif