diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 1 | ||||
-rw-r--r-- | nptl/alloca_cutoff.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 97400e5..22b8208 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -2,6 +2,7 @@ [BZ #10484] * Versions [libc] (GLIBC_PRIVATE): Export __libc_alloca_cutoff. + * alloca_cutoff.c: Add libc_hidden_def. 2010-10-13 H.J. Lu <hongjiu.lu@intel.com> diff --git a/nptl/alloca_cutoff.c b/nptl/alloca_cutoff.c index ba26ceb..bbd930a 100644 --- a/nptl/alloca_cutoff.c +++ b/nptl/alloca_cutoff.c @@ -1,5 +1,5 @@ /* Determine whether block of given size can be allocated on the stack or not. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2011 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -34,3 +34,4 @@ __libc_alloca_cutoff (size_t size) assume the maximum available stack space. */ ?: __MAX_ALLOCA_CUTOFF * 4)); } +libc_hidden_def (__libc_alloca_cutoff) |