summaryrefslogtreecommitdiff
path: root/core/include/kaboom.h
blob: 4a763be95ea3f57fb08a545674430450b93f4fbc (plain)
1
2
3
4
5
6
7
8
9
10
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 */