diff options
Diffstat (limited to 'include/alloca.h')
-rw-r--r-- | include/alloca.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/alloca.h b/include/alloca.h index 3a480f8e24..9536fe0f1f 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -11,4 +11,11 @@ extern void *__alloca (size_t __size); # define __alloca(size) __builtin_alloca (size) #endif /* GCC. */ +extern int __libc_use_alloca (size_t size) __attribute__ ((const)); +extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const)); + +#define __MAX_ALLOCA_CUTOFF 65536 + +#include <allocalim.h> + #endif |