12 lines
209 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
2026-01-29 22:25:33 +08:00
#ifndef _LINUX_BUG_H
#define _LINUX_BUG_H
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
#include <asm/bug.h>
2026-01-21 18:59:54 +08:00
2026-01-29 22:25:33 +08:00
#define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
2026-01-21 18:59:54 +08:00
#define BUG() abort()
2026-01-29 22:25:33 +08:00
#endif /* _LINUX_BUG_H */