bug.h 152 B

1234567891011
  1. #ifndef BUG_H
  2. #define BUG_H
  3. #define BUG_ON(__BUG_ON_cond) assert(!(__BUG_ON_cond))
  4. #define BUILD_BUG_ON(x)
  5. #define BUG() abort()
  6. #endif /* BUG_H */