diff options
author | red031000 <rubenru09@aol.com> | 2020-05-25 14:14:07 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-25 14:14:07 +0100 |
commit | e69b83243cb195429be9c40ec1ced2ed860458a2 (patch) | |
tree | 742e098261095b97fa0e3d1a2253cd36169df355 /arm9/lib/src/custom_allocator.c | |
parent | 6e6d5704a2d209b10c175c72994c1dbd8a340409 (diff) |
return of the warnings
Diffstat (limited to 'arm9/lib/src/custom_allocator.c')
-rw-r--r-- | arm9/lib/src/custom_allocator.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arm9/lib/src/custom_allocator.c b/arm9/lib/src/custom_allocator.c index 869901ce..1b1375bc 100644 --- a/arm9/lib/src/custom_allocator.c +++ b/arm9/lib/src/custom_allocator.c @@ -1,7 +1,5 @@ #include "global.h" - -typedef void * (* AllocFunc)(u32 size); -typedef void (* FreeFunc)(void * ptr); +#include "custom_allocator.h" static FreeFunc sDestructor; static AllocFunc sAllocator; |