blob: 2b8d6d4dffcfdc6a696cd41877a94ba0af262dca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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