summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/machine/assert.h
blob: c9e72557e770c64936ce55d6deee3526a3124ebc (plain)
1
2
3
4
5
6
7
8
#define assert(x) \
({\
	if (!(x)) {\
		printf("assertion failure \"%s\" line %d file %s\n", \
		#x, __LINE__, __FILE__); \
		panic("assertion"); \
	} \
})