Files
2024-05-22 09:04:58 -05:00

11 lines
131 B
C

#ifndef LIBC_ALLOCA_H
#define LIBC_ALLOCA_H
#ifndef __linux__
void* alloca(u32);
#endif
#define alloca __builtin_alloca
#endif