ack/util/ncgg/assert.h

8 lines
140 B
C
Raw Normal View History

1984-12-17 15:13:39 +00:00
/* $Header$ */
#ifndef NDEBUG
#define assert(x) if (!(x)) badassertion("x",__FILE__,__LINE__)
#else
#define assert(x) /* nothing */
#endif