diff options
Diffstat (limited to 'src/code/debug_malloc.c')
| -rw-r--r-- | src/code/debug_malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/code/debug_malloc.c b/src/code/debug_malloc.c index 3e31f7845..5be04b23c 100644 --- a/src/code/debug_malloc.c +++ b/src/code/debug_malloc.c @@ -1,4 +1,5 @@ #include "global.h" +#include "osMalloc.h" #define LOG_SEVERITY_NOLOG 0 #define LOG_SEVERITY_ERROR 2 @@ -125,6 +126,6 @@ void DebugArena_Cleanup(void) { __osMallocCleanup(&sDebugArena); } -u8 DebugArena_IsInitialized(void) { +s32 DebugArena_IsInitialized(void) { return __osMallocIsInitialized(&sDebugArena); } |
