aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c1
-rw-r--r--src/parse.c3
-rw-r--r--src/term.c3
3 files changed, 5 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 431d8a5..024cc7a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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)
{
diff --git a/src/term.c b/src/term.c
index f288653..746c6f7 100644
--- a/src/term.c
+++ b/src/term.c
@@ -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));