diff options
author | Marvin Borner | 2023-01-31 06:05:19 +0100 |
---|---|---|
committer | Marvin Borner | 2023-01-31 06:05:19 +0100 |
commit | 6e8596cc1a259169b173d617a0135daa8ae1cb45 (patch) | |
tree | 835fc3562fa909a843c54b66283d52761c8d9d3f /src | |
parent | 2eecfca85b2b703318e57fcce33c864757b79c00 (diff) |
Fixed building/syncing
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)); |