2006-12-13 Joel Schopp <jschopp@austin.ibm.com>

* newlib/include/alloca.h: add undef alloca to work with xlc
This commit is contained in:
Jeff Johnston 2006-12-13 23:01:21 +00:00
parent 057914fee4
commit dd52bb72fb
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-12-13 Joel Schopp <jschopp@austin.ibm.com>
* newlib/include/alloca.h: add undef alloca to work with xlc
2006-12-12 Joel Schopp <jschopp@austin.ibm.com>
* libc/include/machine/setjmp.h[__SPU__]: Redefine _JBTYPE for

View File

@ -10,6 +10,8 @@
#include "_ansi.h"
#include <sys/reent.h>
#undef alloca
#ifdef __GNUC__
#define alloca(size) __builtin_alloca(size)
#else