fixed alloca define to standard one (nw)

This commit is contained in:
Miodrag Milanovic 2015-04-18 12:50:19 +02:00
parent d49608897f
commit 38458c4d8f

View file

@ -247,7 +247,7 @@ static __inline double log2(double x) { return log(x) * M_LOG2E; }
#ifdef __GNUC__
#ifndef alloca
#define alloca __builtin_alloca
#define alloca(size) __builtin_alloca(size)
#endif
#endif