summaryrefslogtreecommitdiff
path: root/core/include/kaboom.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/include/kaboom.h')
-rw-r--r--core/include/kaboom.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/include/kaboom.h b/core/include/kaboom.h
new file mode 100644
index 00000000..4a763be9
--- /dev/null
+++ b/core/include/kaboom.h
@@ -0,0 +1,11 @@
+#ifndef KABOOM_H
+#define KABOOM_H
+
+/*
+ * Death! The macro trick is to avoid symbol conflict with
+ * the real-mode symbol kaboom.
+ */
+__noreturn _kaboom(void);
+#define kaboom() _kaboom()
+
+#endif /* KABOOM_H */