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