for loops: add a special case for "for(i = 0; i < 10; i++)"
[smatch.git] / compile.h
blob177363a7397cec52065faaaf3f2e822ad9bca1d3
1 #ifndef COMPILE_H
2 #define COMPILE_H
4 struct symbol;
6 extern void emit_one_symbol(struct symbol *);
7 extern void emit_unit_begin(const char *);
8 extern void emit_unit_end(void);
10 #endif /* COMPILE_H */