mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
11 lines
146 B
C
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
|