vserver 1.9.3
[linux-2.6.git] / include / asm-s390 / bug.h
1 #ifndef _S390_BUG_H
2 #define _S390_BUG_H
3
4 #include <linux/kernel.h>
5
6 #define BUG() do { \
7         printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \
8         __asm__ __volatile__(".long 0"); \
9 } while (0)
10
11 #define HAVE_ARCH_BUG
12 #include <asm-generic/bug.h>
13
14 #endif