aboutsummaryrefslogtreecommitdiff
path: root/src/codegen.h
blob: ece93aaf1bd8e3fc02b634ed1c3f522dd185d9ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 *, mpq_t *, scope_t *, type_t *, ast_t, lexemes_t)
	__attribute__((nonnull));

#endif /* !ORYX_CODEGEN_H */