bx: use real alloca.h on glibc systems

On GNU/kFreeBSD, the definition for alloca() can be found in the
system alloca.h
This commit is contained in:
Steven Chamberlain 2016-07-13 12:25:55 +01:00
parent f5a00a0049
commit c904fc121c

View File

@ -1 +1,5 @@
#ifdef __GLIBC__
#include_next <alloca.h>
#else
#include <stdlib.h>
#endif