summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-01-29 15:36:26 +0000
committerUlrich Drepper <drepper@redhat.com>2009-01-29 15:36:26 +0000
commit647925b260ed00034b0ca8c7598c92f6d28a3e99 (patch)
treeceb837592a955c2f101fa56bcf9fbf417ab969f5 /include
parentfd537e535fe9f4d2b0286cf7a7242ef1e6775e67 (diff)
downloadglibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.tar.gz
glibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.tar.xz
glibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.zip
* sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
	(stackinfo_sub_sp): Define.
Diffstat (limited to 'include')
-rw-r--r--include/alloca.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/alloca.h b/include/alloca.h
index 7d243fd4ac..9a4b5c7da0 100644
--- a/include/alloca.h
+++ b/include/alloca.h
@@ -55,8 +55,8 @@ extern int __libc_alloca_cutoff (size_t size) __attribute__ ((const));
 #else
 # define alloca_account(size, avar) \
   ({ size_t s__ = (size);		    \
-     avar += size__;			    \
-     __alloca (size__); })
+     avar += s__;			    \
+     __alloca (s__); })
 #endif
 
 #endif