mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
8 lines
108 B
C
8 lines
108 B
C
|
#ifndef _ALLOCA_H_
|
||
|
#define _ALLOCA_H_
|
||
|
|
||
|
void* alloca(unsigned int);
|
||
|
#define alloca __builtin_alloca
|
||
|
|
||
|
#endif
|