mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
fixed alloca define to standard one (nw)
This commit is contained in:
parent
d49608897f
commit
38458c4d8f
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ static __inline double log2(double x) { return log(x) * M_LOG2E; }
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#ifndef alloca
|
#ifndef alloca
|
||||||
#define alloca __builtin_alloca
|
#define alloca(size) __builtin_alloca(size)
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue