diff options
Diffstat (limited to 'include/utils.h')
| -rw-r--r-- | include/utils.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/utils.h b/include/utils.h new file mode 100644 index 0000000..29c59f1 --- /dev/null +++ b/include/utils.h @@ -0,0 +1,11 @@ +#ifndef __UTILS_H__ +#define __UTILS_H__ + +#include <stdnoreturn.h> + +#include "types.h" + + +noreturn void die(i32 code, s8 *fmt, ...); + +#endif /* __UTILS_H__ */ |