diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-26 15:41:32 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-26 15:41:32 +0100 |
| commit | 3e4d615983f76616b5a598b89b75aa84975a4aab (patch) | |
| tree | 304f5b8a33d5bfa74f0364f42aa4cc4eaedaf5f6 /src/common.cpp | |
| parent | aa8777ee47f503eb90d4e2225274d0d20a9b39a3 (diff) | |
Minor fixes
Diffstat (limited to 'src/common.cpp')
| -rw-r--r-- | src/common.cpp | 6 |
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" |