diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 1 | ||||
-rw-r--r-- | src/parse.c | 3 | ||||
-rw-r--r-- | src/term.c | 3 |
3 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,5 @@ #include <stdio.h> + #include <parse.h> #include <term.h> diff --git a/src/parse.c b/src/parse.c index 00fd498..495f55f 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1,9 +1,10 @@ // Just for debugging purposes // -> parses custom bruijn syntax +#include <stdio.h> + #include <parse.h> #include <term.h> -#include <stdio.h> static struct term *rec(const char **term) { @@ -1,7 +1,8 @@ -#include <term.h> #include <stdlib.h> #include <stdio.h> +#include <term.h> + struct term *new_term(term_type type) { struct term *term = calloc(1, sizeof(*term)); |