aboutsummaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/binops.c2
-rw-r--r--src/parse/containers.c2
-rw-r--r--src/parse/controlflow.c2
-rw-r--r--src/parse/expressions.c2
-rw-r--r--src/parse/files.c2
-rw-r--r--src/parse/functions.c2
-rw-r--r--src/parse/statements.c2
-rw-r--r--src/parse/suffixes.c2
-rw-r--r--src/parse/text.c2
-rw-r--r--src/parse/typedefs.c2
-rw-r--r--src/parse/utils.c2
-rw-r--r--src/parse/utils.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/src/parse/binops.c b/src/parse/binops.c
index ad3fff54..e095a1bc 100644
--- a/src/parse/binops.c
+++ b/src/parse/binops.c
@@ -2,7 +2,7 @@
#include <stdbool.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/containers.c b/src/parse/containers.c
index 8f9922f3..416f562c 100644
--- a/src/parse/containers.c
+++ b/src/parse/containers.c
@@ -4,7 +4,7 @@
#include <stdbool.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/controlflow.c b/src/parse/controlflow.c
index 1087e20e..24de3cfe 100644
--- a/src/parse/controlflow.c
+++ b/src/parse/controlflow.c
@@ -4,7 +4,7 @@
#include <string.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "controlflow.h"
#include "errors.h"
diff --git a/src/parse/expressions.c b/src/parse/expressions.c
index 27e44129..c6a4f940 100644
--- a/src/parse/expressions.c
+++ b/src/parse/expressions.c
@@ -4,7 +4,7 @@
#include <string.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "binops.h"
#include "containers.h"
#include "context.h"
diff --git a/src/parse/files.c b/src/parse/files.c
index f5d9554a..73f8fde5 100644
--- a/src/parse/files.c
+++ b/src/parse/files.c
@@ -12,7 +12,7 @@
#include "../stdlib/stdlib.h"
#include "../stdlib/tables.h"
#include "../stdlib/text.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/functions.c b/src/parse/functions.c
index 8fb9f78e..742f29a6 100644
--- a/src/parse/functions.c
+++ b/src/parse/functions.c
@@ -12,7 +12,7 @@
#include "../formatter/utils.h"
#include "../stdlib/datatypes.h"
#include "../stdlib/text.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "controlflow.h"
#include "errors.h"
diff --git a/src/parse/statements.c b/src/parse/statements.c
index 24917a76..9c6f9e31 100644
--- a/src/parse/statements.c
+++ b/src/parse/statements.c
@@ -4,7 +4,7 @@
#include <stdbool.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/suffixes.c b/src/parse/suffixes.c
index 85e20721..71844642 100644
--- a/src/parse/suffixes.c
+++ b/src/parse/suffixes.c
@@ -4,7 +4,7 @@
#include "../ast.h"
#include "../stdlib/print.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/text.c b/src/parse/text.c
index e23b8417..d4c1f825 100644
--- a/src/parse/text.c
+++ b/src/parse/text.c
@@ -10,7 +10,7 @@
#include "../ast.h"
#include "../stdlib/text.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "expressions.h"
diff --git a/src/parse/typedefs.c b/src/parse/typedefs.c
index 56bb687f..b00ee50d 100644
--- a/src/parse/typedefs.c
+++ b/src/parse/typedefs.c
@@ -4,7 +4,7 @@
#include <string.h>
#include "../ast.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#include "errors.h"
#include "files.h"
diff --git a/src/parse/utils.c b/src/parse/utils.c
index 03e0ebcd..bdf59aff 100644
--- a/src/parse/utils.c
+++ b/src/parse/utils.c
@@ -7,7 +7,7 @@
#include <uniname.h>
#include "../stdlib/tables.h"
-#include "../stdlib/util.h"
+#include "../util.h"
#include "errors.h"
#include "utils.h"
diff --git a/src/parse/utils.h b/src/parse/utils.h
index b8fb0756..9a6f0aac 100644
--- a/src/parse/utils.h
+++ b/src/parse/utils.h
@@ -3,7 +3,7 @@
#include <stdbool.h>
-#include "../stdlib/util.h"
+#include "../util.h"
#include "context.h"
#define SPACES_PER_INDENT 4