1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef MAIN_H #define MAIN_H #include <stdio.h> #include <stdlib.h> #include "util.h" #include "source.h" #include "token.h" #include "pp.h" #include "lexer.h" #include "parser.h" #include "doer.h" #endif