summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.c b/main.c
index f4c6280..900b723 100644
--- a/main.c
+++ b/main.c
@@ -7,6 +7,7 @@
#include <ctype.h>
#include "util/err.c"
#include "util/files.c"
+#include "identifiers.c"
#include "tokenizer.c"
int main(int argc, char **argv) {
@@ -31,6 +32,7 @@ int main(int argc, char **argv) {
printf("\n");
tokenizer_free(&t);
-
+
fclose(in);
+ idents_free();
}