diff options
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/common.h b/include/common.h index 2fcb1fd37..06ed27806 100644 --- a/include/common.h +++ b/include/common.h @@ -119,11 +119,13 @@ typedef volatile unsigned char	vu_char;  #define debugX(level,fmt,args...)  #endif	/* DEBUG */ +#ifndef BUG  #define BUG() do { \  	printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \  	panic("BUG!"); \  } while (0)  #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0) +#endif /* BUG */  typedef void (interrupt_handler_t)(void *); |