ack/mach/proto/cg/assert.h
1984-05-19 11:42:19 +00:00

8 lines
139 B
C

/* $Header$ */
#ifndef NDEBUG
#define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)
#else
#define assert(x) /* nothing */
#endif