include/stdlib.h: merged

Change-Id: I26b032566d1d7a816df56254c5f9e6dc82626a70
This commit is contained in:
2013-12-02 16:49:00 +01:00
parent 9335f8073e
commit 42d7eda0cc
3 changed files with 5 additions and 6 deletions

View File

@@ -246,9 +246,6 @@ int posix_memalign(void **, size_t, size_t);
void *alloca(int); /* built-in for gcc */
#elif defined(__PCC__) && !defined(__GNUC__)
#define alloca(size) __builtin_alloca(size)
#elif (__GNUC__ >= 2)
/* LSC: MINIX Patch needed (2 following lines) */
#define alloca(size) __builtin_alloca(size)
#else
void *alloca(size_t);
#endif /* __GNUC__ */