blob: 6f4af7a2956f9bdb49b768ea7c9289de758cd76b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef ORYX_CODEGEN_H
#define ORYX_CODEGEN_H
#include <gmp.h>
#include "analyzer.h"
#include "lexer.h"
#include "parser.h"
void codegen(const char *, mpq_t *, struct scope *, struct type *, struct ast,
struct lexemes)
__attribute__((nonnull));
#endif /* !ORYX_CODEGEN_H */
|