Use the correct type for alloca's size parameter.

Well, hopefully: it at least agrees with gcc's builtin version.
This commit is contained in:
Bill Currie 2012-08-18 11:20:48 +09:00
parent 62face768f
commit 836215357a

View file

@ -61,7 +61,8 @@ AH_VERBATIM([HAVE_ALLOCA_PROTO],
#undef HAVE_ALLOCA_PROTO #undef HAVE_ALLOCA_PROTO
#ifndef HAVE_ALLOCA_PROTO #ifndef HAVE_ALLOCA_PROTO
#ifndef QFASM #ifndef QFASM
void *alloca (int size); #include <stdlib.h>
void *alloca (size_t size);
#endif #endif
#endif]) #endif])