diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-01-13 14:01:56 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-01-13 14:01:56 -0500 |
commit | a85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c (patch) | |
tree | 0c240f5120d99d2b239d83333b533505fe308a36 /include/alloca.h | |
parent | cfa28e560ef69372b9e15e9a2d924a0fbcfc7bca (diff) | |
download | glibc-a85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c.tar glibc-a85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c.tar.gz glibc-a85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c.tar.bz2 glibc-a85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c.zip |
Fix PLT use due to __libc_alloca_cutoff.
Diffstat (limited to 'include/alloca.h')
-rw-r--r-- | include/alloca.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/alloca.h b/include/alloca.h index 9a4b5c7da0..b99c3d152b 100644 --- a/include/alloca.h +++ b/include/alloca.h @@ -14,6 +14,7 @@ extern void *__alloca (size_t __size); extern int __libc_use_alloca (size_t size) __attribute__ ((const)); extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const)); +libc_hidden_proto (__libc_alloca_cutoff) #define __MAX_ALLOCA_CUTOFF 65536 |