mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
76eb52ab52
- Matched all remaining functions in `__osMalloc.c`, 2 functions in `code_8007BF90.c`, 1 in `code_800A9F30.c`, 2 in `fault.c`, 1 in `fault_drawer.c`, 1 in `gfxprint.c`, 2 in `z_camera.c` - Improved most other remaining non matchings to ensure they are actually equivalent and to get them closer to matching - Added a `alloc.h` header file in the process of working on `fault.c` non matchings - Decompiled `padmgr.c` data/bss in order to improve padmgr non matchings - Removed unused `z_en_wallmas.c` data files - Moved functions confirmed to be in `z_cheap_proc.c` to their own file with that name
7 lines
108 B
C
7 lines
108 B
C
#ifndef _ALLOCA_H_
|
|
#define _ALLOCA_H_
|
|
|
|
void* alloca(unsigned int);
|
|
#define alloca __builtin_alloca
|
|
|
|
#endif
|