diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2015-11-30 02:45:06 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2015-11-30 02:45:06 +0800 |
commit | 71ddd0d3f555b82165f98fae4ab814780c915740 (patch) | |
tree | fc60d799cc39f581c91ff98fa592a3eb00fe443b /src/ast.c | |
parent | 91f04bf7a454171f1c37d2a42deada3af82fba55 (diff) | |
download | compiler2015-71ddd0d3f555b82165f98fae4ab814780c915740.tar.gz compiler2015-71ddd0d3f555b82165f98fae4ab814780c915740.tar.zst compiler2015-71ddd0d3f555b82165f98fae4ab814780c915740.zip |
Include our headers before including system headers
Diffstat (limited to 'src/ast.c')
-rw-r--r-- | src/ast.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,10 +2,12 @@ # include "config.h" #endif +#include "ast.h" + #include <stdarg.h> #include <stdio.h> #include <stdlib.h> -#include "ast.h" + extern int line_number; |