8 lines
135 B
C
8 lines
135 B
C
/* $Header$ */
|
|
|
|
#ifndef NDEBUG
|
|
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
|
|
#else
|
|
#define assert(x) /* nothing */
|
|
#endif
|