[PATCH] AIX malloc.h fixincludes

2012-03-23 Thread David Edelsohn
Some early releases of AIX 6 include a malloc.h header with an incorrect use of builtin keyword: #ifdef __cplusplus extern C { extern builtin char *__alloca (size_t); # define alloca __alloca } #endif /* def __cplusplus */ GCC is not too happy about this. Now that GCC mainline and 4.7 use

Re: [PATCH] AIX malloc.h fixincludes

2012-03-23 Thread Bruce Korb
On Fri, Mar 23, 2012 at 11:47 AM, David Edelsohn dje@gmail.com wrote: Some early releases of AIX 6 include a malloc.h header with an incorrect use of builtin keyword: #ifdef __cplusplus extern C {   extern builtin char *__alloca (size_t); #  define alloca __alloca } #endif /* def