aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp
index eeadc71bc..af0a195a8 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -33,8 +33,12 @@ gbAllocator heap_allocator(void);
#define for_array(index_, array_) for (isize index_ = 0; index_ < (array_).count; index_++)
-#include "threading.cpp"
+i32 next_pow2(i32 n);
+i64 next_pow2(i64 n);
+isize next_pow2_isize(isize n);
+void debugf(char const *fmt, ...);
+#include "threading.cpp"
#include "unicode.cpp"
#include "array.cpp"
#include "queue.cpp"