diff options
Diffstat (limited to 'src/analyzer.h')
-rw-r--r-- | src/analyzer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/analyzer.h b/src/analyzer.h index a1c55f5..ec6089c 100644 --- a/src/analyzer.h +++ b/src/analyzer.h @@ -3,6 +3,8 @@ #include <stdint.h> +#include <gmp.h> + #include "alloc.h" #include "lexer.h" #include "parser.h" @@ -55,7 +57,7 @@ struct type { }; void analyzeprog(struct ast, struct lexemes, arena *, struct type **, - struct scope **) + struct scope **, mpq_t **) __attribute__((nonnull)); #endif /* !ORYX_ANALYZER_H */ |