• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef KABOOM_H
2 #define KABOOM_H
3 
4 /*
5  * Death!  The macro trick is to avoid symbol conflict with
6  * the real-mode symbol kaboom.
7  */
8 __noreturn _kaboom(void);
9 #define kaboom() _kaboom()
10 
11 #endif /* KABOOM_H */
12