ack/mach/proto/cg/assert.h
1984-05-18 21:27:39 +00:00

5 lines
123 B
C

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