nctref/src/reporting.h
2025-05-03 10:00:20 +03:00

16 lines
355 B
C

#ifndef NCTREF_REPORTING_H
#define NCTREF_REPORTING_H
#ifndef __GNUC__
#define __attribute__(x)
#endif
union AST;
struct Token;
void __attribute__((noreturn)) stahp(int, int, const char*, ...);
void __attribute__((noreturn)) stahp_node(union AST*, const char*, ...);
void __attribute__((noreturn)) stahp_token(struct Token*, const char*, ...);
#endif