nctref/src/reporting.h

16 lines
355 B
C
Raw Normal View History

2023-08-27 19:48:06 +03:00
#ifndef NCTREF_REPORTING_H
#define NCTREF_REPORTING_H
2024-11-20 16:36:17 +02:00
#ifndef __GNUC__
2023-08-27 19:48:06 +03:00
#define __attribute__(x)
#endif
2025-05-03 09:59:30 +03:00
union AST;
struct Token;
2023-08-27 19:48:06 +03:00
void __attribute__((noreturn)) stahp(int, int, const char*, ...);
2025-05-03 09:59:30 +03:00
void __attribute__((noreturn)) stahp_node(union AST*, const char*, ...);
void __attribute__((noreturn)) stahp_token(struct Token*, const char*, ...);
2023-08-27 19:48:06 +03:00
#endif