acc/include/fatals.h
szdytom 24ab2a70f7 fix syntax error hint & strip all warnings
Signed-off-by: szdytom <szdytom@163.com>
2023-06-12 16:39:30 +08:00

16 lines
486 B
C

#ifndef ACC_FATALS_H
#define ACC_FATALS_H
#include <stddef.h>
#include <stdnoreturn.h>
void* malloc_or_fail(size_t s, const char *func_name);
noreturn void fail_target(const char *target_name);
noreturn void fail_malloc(const char *func_name);
noreturn void fail_ast_op(int op, const char *func_name);
noreturn void fail_ce_expect(int line, const char *expected, const char *got);
noreturn void fail_ce(int line, const char *reason);
noreturn void fail_char(int line, int c);
#endif