Luna/libc/include/alloca.h

9 lines
119 B
C
Raw Normal View History

2023-05-27 10:11:51 +00:00
/* alloca.h: Stack memory allocation. */
#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca __builtin_alloca
#endif