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"); \ } \ })