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