bug.h 231 B

1234567891011121314
  1. #ifndef __ASM_BUG_H
  2. #define __ASM_BUG_H
  3. #include <asm/break.h>
  4. #define BUG() \
  5. do { \
  6. __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
  7. } while (0)
  8. #define HAVE_ARCH_BUG
  9. #include <asm-generic/bug.h>
  10. #endif