diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 22:13:47 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2020-12-14 22:13:47 -0800 |
| commit | 3acf397e6d772778490d7da9f33f3a8f939c9efd (patch) | |
| tree | 28b8ba262bb1b40670f87e55b183acf2f3bda6bd /grammar.c | |
| parent | 2fb68fa97f096e5bd0f3ff81d31c3bc61719ae8a (diff) | |
Imports cleanup and removing FILE* parameter from json
Diffstat (limited to 'grammar.c')
| -rw-r--r-- | grammar.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,9 +2,12 @@ * grammar.c - Code for defining grammars (sets of rules) */ -#include "grammar.h" +#include <stdlib.h> +#include <string.h> + #include "compiler.h" #include "file_loader.h" +#include "grammar.h" #include "utils.h" grammar_t *new_grammar(void) |
