Files
retrobsd/include/alloca.h
2014-04-09 14:27:18 +01:00

16 lines
219 B
C

/* alloca.h - Allocate memory on stack */
#ifndef ALLOCA_H
#define ALLOCA_H
#undef alloca
#ifdef __GNUC__
#define alloca(size) __builtin_alloca(size)
#else
#include <sys/types.h>
void *alloca(size_t);
#endif
#endif