xref: /illumos-gate/usr/src/tools/smatch/src/compile.h (revision 1f5207b7)
1*1f5207b7SJohn Levon #ifndef COMPILE_H
2*1f5207b7SJohn Levon #define COMPILE_H
3*1f5207b7SJohn Levon 
4*1f5207b7SJohn Levon struct symbol;
5*1f5207b7SJohn Levon 
6*1f5207b7SJohn Levon extern void emit_one_symbol(struct symbol *);
7*1f5207b7SJohn Levon extern void emit_unit_begin(const char *);
8*1f5207b7SJohn Levon extern void emit_unit_end(void);
9*1f5207b7SJohn Levon 
10*1f5207b7SJohn Levon #endif /* COMPILE_H */
11