1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef _OUTPUT_H_ #define _OUTPUT_H_ #include <stdlib.h> #include <stdio.h> #include "symlist.h" #define RULES_FILE "rules" #define LINKER_FILE "linker" void fprint_rules(struct symlist *sl); void fprint_linker(struct symlist *sl); #endif /* _OUTPUT_H_ */