Files

12 lines
209 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_BUG_H
#define _LINUX_BUG_H
2013-03-18 13:22:19 +10:30
2020-12-09 16:42:03 +08:00
#include <asm/bug.h>
2013-03-18 13:22:19 +10:30
#define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
#define BUG() abort()
#endif /* _LINUX_BUG_H */