aboutsummaryrefslogtreecommitdiff
blob: 177363a7397cec52065faaaf3f2e822ad9bca1d3 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef COMPILE_H
#define COMPILE_H

struct symbol;

extern void emit_one_symbol(struct symbol *);
extern void emit_unit_begin(const char *);
extern void emit_unit_end(void);

#endif /* COMPILE_H */