Files
prime/libc/alloca.h
2026-03-19 20:54:59 -06:00

11 lines
146 B
C

#ifndef _ALLOCA_H_
#define _ALLOCA_H_
#ifdef __MWERKS__
#define alloca(x) __alloca(x)
#else
#define alloca(x) __builtin_alloca(x)
#endif
#endif