summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/empty.c5
-rw-r--r--src/resources/obj.c1
-rw-r--r--src/std/str.h2
3 files changed, 8 insertions, 0 deletions
diff --git a/src/empty.c b/src/empty.c
new file mode 100644
index 0000000..d58a94f
--- /dev/null
+++ b/src/empty.c
@@ -0,0 +1,5 @@
+// For some reason on Mac we need an empty file so that 'ar' has something
+// to run.
+int add(int a, int b) {
+ return a + b;
+} \ No newline at end of file
diff --git a/src/resources/obj.c b/src/resources/obj.c
index 05aa96e..d56e212 100644
--- a/src/resources/obj.c
+++ b/src/resources/obj.c
@@ -11,6 +11,7 @@
#include <string.h>
#include "core.h"
+#include "file.h"
#include "darray.h"
#include "log.h"
#include "maths.h"
diff --git a/src/std/str.h b/src/std/str.h
index 9d30cba..518d508 100644
--- a/src/std/str.h
+++ b/src/std/str.h
@@ -10,6 +10,8 @@
*/
#pragma once
+#include <ctype.h>
+
#include "defines.h"
#include "mem.h"