pdp11v/usr/include/assert.h

Compare this file to the similar file:
Show the results in this format:

/*	@(#)assert.h	1.4	*/
#ifdef NDEBUG
#define assert(EX)
#else
extern void _assert();
#define assert(EX) if (EX) ; else _assert("EX", __FILE__, __LINE__)
#endif