summaryrefslogtreecommitdiff
path: root/nptl/alloca_cutoff.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-01-13 14:01:56 -0500
committerUlrich Drepper <drepper@gmail.com>2011-01-13 14:01:56 -0500
commita85b5cb4d4a5fc56e2b38638d270bf2daa67eb6c (patch)
tree0c240f5120d99d2b239d83333b533505fe308a36 /nptl/alloca_cutoff.c
parentcfa28e560ef69372b9e15e9a2d924a0fbcfc7bca (diff)
Fix PLT use due to __libc_alloca_cutoff.
Diffstat (limited to 'nptl/alloca_cutoff.c')
-rw-r--r--nptl/alloca_cutoff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/alloca_cutoff.c b/nptl/alloca_cutoff.c
index ba26ceba3d..bbd930a240 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)