16 lines
355 B
C
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
|