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