You've already forked 2ship2harkinian-Android
mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-03-10 11:20:47 -07:00
11 lines
131 B
C
11 lines
131 B
C
#ifndef LIBC_ALLOCA_H
|
|
#define LIBC_ALLOCA_H
|
|
|
|
#ifndef __linux__
|
|
void* alloca(u32);
|
|
#endif
|
|
|
|
#define alloca __builtin_alloca
|
|
|
|
#endif
|