diff options
author | red031000 <rubenru09@aol.com> | 2020-05-25 15:43:23 +0100 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2020-05-25 15:43:23 +0100 |
commit | 0985659425ab1a9035d85512e330cdc247b24e6b (patch) | |
tree | 31ec68ffd57f0d43df60f6885636cc12de782306 /arm9/lib/include/OS_alloc.h | |
parent | 00f7b96e44ef644ec2b5382eda87e3f47c06b436 (diff) |
kill all warnings
Diffstat (limited to 'arm9/lib/include/OS_alloc.h')
-rw-r--r-- | arm9/lib/include/OS_alloc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arm9/lib/include/OS_alloc.h b/arm9/lib/include/OS_alloc.h index 08fb3224..74b7b0e5 100644 --- a/arm9/lib/include/OS_alloc.h +++ b/arm9/lib/include/OS_alloc.h @@ -32,7 +32,10 @@ typedef struct { HeapDesc* heapArray; } OSHeapInfo; -void OS_FreeToHeap(OSArenaId id, OSHeapHandle heap, void *ptr); +Cell* DLAddFront(Cell* list, Cell* cell); +Cell* DLExtract(Cell* list, Cell* cell); +Cell *DLInsert(Cell *original, Cell *inserted); void* OS_AllocFromHeap(OSArenaId id, OSHeapHandle heap, u32 size); +void OS_FreeToHeap(OSArenaId id, OSHeapHandle heap, void *ptr); #endif //POKEDIAMOND_OS_ALLOC_H |