diff options
| -rw-r--r-- | cccl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cccl.c b/cccl.c index c574a87..477e235 100644 --- a/cccl.c +++ b/cccl.c @@ -2,6 +2,7 @@ #include <stddef.h> #include <stdio.h> +#include <stdlib.h> void cccl(struct cccl_File file) @@ -12,6 +13,8 @@ void cccl(struct cccl_File file) if (verbose) fprintf(stderr, "Read: %lu\n", tokens_amount); + free(file.buffer); + struct cccl_Node *parsed = cccl_parse(tokens, tokens_amount, 0, 0); struct cccl_Variables scope = {0}; |