diff options
Diffstat (limited to 'src/zprep.h')
| -rw-r--r-- | src/zprep.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/zprep.h b/src/zprep.h index 299ec13..17e7e02 100644 --- a/src/zprep.h +++ b/src/zprep.h @@ -64,6 +64,8 @@ typedef enum TOK_DCOLON, TOK_TRAIT, TOK_IMPL, + TOK_AND, + TOK_OR, TOK_FOR, TOK_COMPTIME, TOK_ELLIPSIS, @@ -181,5 +183,10 @@ typedef struct } CompilerConfig; extern CompilerConfig g_config; +extern char g_link_flags[]; +extern char g_cflags[]; + +struct ParserContext; +void scan_build_directives(struct ParserContext *ctx, const char *src); #endif |
