4 #include <linux/config.h>
5 #include <linux/stddef.h>
8 #ifdef CONFIG_DEBUG_BUGVERBOSE
9 extern void __bug(const char *file
, int line
, void *data
) __attribute__((noreturn
));
11 /* give file/line information */
12 #define BUG() __bug(__FILE__, __LINE__, NULL)
16 /* this just causes an oops */
17 #define BUG() (*(int *)0 = 0)
24 #include <asm-generic/bug.h>