Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef BUG_H
0003 #define BUG_H
0004 
0005 #include <asm/bug.h>
0006 
0007 #define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
0008 
0009 #define BUILD_BUG_ON(x)
0010 
0011 #define BUG() abort()
0012 
0013 #endif /* BUG_H */