diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-01-29 15:36:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-01-29 15:36:26 +0000 |
commit | 647925b260ed00034b0ca8c7598c92f6d28a3e99 (patch) | |
tree | ceb837592a955c2f101fa56bcf9fbf417ab969f5 /include/alloca.h | |
parent | fd537e535fe9f4d2b0286cf7a7242ef1e6775e67 (diff) | |
download | glibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.zip glibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.tar.gz glibc-647925b260ed00034b0ca8c7598c92f6d28a3e99.tar.bz2 |
* sysdeps/i386/stackinfo.h (stackinfo_get_sp): Define.
(stackinfo_sub_sp): Define.
Diffstat (limited to 'include/alloca.h')
-rw-r--r-- | include/alloca.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/alloca.h b/include/alloca.h index 7d243fd..9a4b5c7 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 |