blob: fcdbab19465177793402404f85e476b634ba1159 (
plain)
1
2
3
4
5
6
7
8
9
|
/* $OpenBSD: assert.h,v 1.4 1999/02/09 06:36:25 smurph Exp $ */
#define assert(x) \
({\
if (!(x)) {\
printf("assertion failure \"%s\" line %d file %s\n", \
#x, __LINE__, __FILE__); \
panic("assertion"); \
} \
})
|