ack/util/opt/assert.h

8 lines
135 B
C
Raw Normal View History

1984-05-17 14:14:29 +00:00
/* $Header$ */
1984-05-17 13:42:36 +00:00
#ifndef NDEBUG
#define assert(x) if(!(x)) badassertion(__FILE__,__LINE__)
#else
#define assert(x) /* nothing */
#endif