diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-22 12:27:18 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-22 12:27:18 -0800 |
commit | a1a5214bbae2b1b4c988e5f3d1b6415b64a890c6 (patch) | |
tree | 41f0989e15dae71edeb84d54e8f22c070c978c96 | |
parent | e2a5e7e5f004fb9ac93d4118eb98ac040e10c897 (diff) |
Only need to emit tentative definitions when compiling
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60,8 +60,8 @@ main(int argc, char *argv[]) if (!decl(&filescope, NULL)) error(&tok.loc, "expected declaration or function definition"); } + emittentativedefns(); } - emittentativedefns(); return 0; } |