• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef COMPILE_H
2 #define COMPILE_H
3 
4 struct symbol;
5 
6 extern void emit_one_symbol(struct symbol *);
7 extern void emit_unit_begin(const char *);
8 extern void emit_unit_end(void);
9 
10 #endif /* COMPILE_H */
11