ack/mach/proto/ncg/assert.h

8 lines
139 B
C
Raw Normal View History

1985-01-08 15:34:54 +00:00
/* $Header$ */
#ifndef NDEBUG
#define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
#else
#define assert(x) /* nothing */
#endif