summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorJasper2025-09-08 12:12:09 +0200
committerJasper2025-09-08 12:12:09 +0200
commitf8d2ae65bba18ae79695111960a74507cdda0132 (patch)
tree8e926f4a6053ed728d7c653dad32268487f1a06a /utils.h
parentf8ec4383f4bdfd9e0d582c2ece55fe22ce08d61c (diff)
Reordered includes
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils.h b/utils.h
index 8aecde3..d7688c7 100644
--- a/utils.h
+++ b/utils.h
@@ -1,6 +1,8 @@
#ifndef UTIL_H
#define UTIL_H
+#include <stddef.h>
+
#define ABS(x) ((x) >= 0 ? (x) : -(x))
char *str_delete_at(const char *str, const int pos);