diff options
Diffstat (limited to 'src/codegen.h')
-rw-r--r-- | src/codegen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/codegen.h b/src/codegen.h index eda799d..6f4af7a 100644 --- a/src/codegen.h +++ b/src/codegen.h @@ -1,11 +1,13 @@ #ifndef ORYX_CODEGEN_H #define ORYX_CODEGEN_H +#include <gmp.h> + #include "analyzer.h" #include "lexer.h" #include "parser.h" -void codegen(const char *, struct scope *, struct type *, struct ast, +void codegen(const char *, mpq_t *, struct scope *, struct type *, struct ast, struct lexemes) __attribute__((nonnull)); |