Add explicit return to Alloc funcs

This commit is contained in:
Marcus Huderle 2019-04-06 13:58:06 -05:00
parent fe12f2f4b3
commit b251ddf3b4
1 changed files with 2 additions and 2 deletions

View File

@ -178,12 +178,12 @@ void InitHeap(void *heapStart, u32 heapSize)
void *Alloc(u32 size)
{
AllocInternal(sHeapStart, size);
return AllocInternal(sHeapStart, size);
}
void *AllocZeroed(u32 size)
{
AllocZeroedInternal(sHeapStart, size);
return AllocZeroedInternal(sHeapStart, size);
}
void Free(void *pointer)