acc/include/fatals.h
2023-02-07 10:32:03 +08:00

13 lines
326 B
C

#ifndef ACC_FATALS_H
#define ACC_FATALS_H
#include "noreturn.h"
noreturn void fail_malloc(const char *func_name);
noreturn void fail_ast_op(int op, const char *func_name);
noreturn void fail_ce_expect(const char *expected, const char *got);
noreturn void fail_ce(const char *reason);
noreturn void fail_char(int c);
#endif