Luna/libc/include/alloca.h
apio 18115ca04a
All checks were successful
continuous-integration/drone/push Build is passing
libc: Add alloca.h
2023-05-27 12:11:51 +02:00

9 lines
119 B
C

/* alloca.h: Stack memory allocation. */
#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca __builtin_alloca
#endif