mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-18 06:50:08 +00:00
18 lines
298 B
C
18 lines
298 B
C
|
#ifndef __ASM_SH_BUG_H
|
||
|
#define __ASM_SH_BUG_H
|
||
|
|
||
|
#include <linux/config.h>
|
||
|
|
||
|
/*
|
||
|
* Tell the user there is some problem.
|
||
|
*/
|
||
|
#define BUG() do { \
|
||
|
printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
|
||
|
*(volatile int *)0 = 0; \
|
||
|
} while (0)
|
||
|
|
||
|
#define HAVE_ARCH_BUG
|
||
|
#include <asm-generic/bug.h>
|
||
|
|
||
|
#endif
|