1993-08-02 21:48:44 +04:00
|
|
|
/*
|
1993-07-08 20:03:44 +04:00
|
|
|
* source in this file came from
|
|
|
|
* the Mach ethernet boot written by Leendert van Doorn.
|
|
|
|
*
|
|
|
|
* assert.h
|
1993-08-02 21:48:44 +04:00
|
|
|
*
|
|
|
|
* $Id: assert.h,v 1.2 1993/08/02 17:52:50 mycroft Exp $
|
1993-07-08 20:03:44 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#define assert(exp) \
|
|
|
|
if (!(exp)) { \
|
|
|
|
printf("Assertion \"%s\" failed: file %s, line %d\n", \
|
|
|
|
#exp, __FILE__, __LINE__); \
|
|
|
|
exit(1); \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define assert(exp) /* */
|
|
|
|
#endif /* _ASSERT_H */
|