diff options
author | Elliott Hughes <enh@google.com> | 2013-02-14 15:59:15 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-02-14 15:59:15 -0800 |
commit | 56a007c157eae6a1f2c058df43403acebaadcdd2 (patch) | |
tree | 45037e3035826c17d4f21e090fe69aec35388cbc /libc/private | |
parent | f93de61e7b4dbb1328b5362cf2c03471b3c7d0eb (diff) | |
parent | 0a2cb815974ea96af664fa966079966a08916722 (diff) | |
download | bionic-56a007c157eae6a1f2c058df43403acebaadcdd2.zip bionic-56a007c157eae6a1f2c058df43403acebaadcdd2.tar.gz bionic-56a007c157eae6a1f2c058df43403acebaadcdd2.tar.bz2 |
am 0a2cb815: Merge "Simplify __stack_chk_fail, and fix it so we get debuggerd stack traces."
# Via Elliott Hughes (1) and Gerrit Code Review (1)
* commit '0a2cb815974ea96af664fa966079966a08916722':
Simplify __stack_chk_fail, and fix it so we get debuggerd stack traces.
Diffstat (limited to 'libc/private')
-rw-r--r-- | libc/private/bionic_ssp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/private/bionic_ssp.h b/libc/private/bionic_ssp.h index d34b6ab..9883d72 100644 --- a/libc/private/bionic_ssp.h +++ b/libc/private/bionic_ssp.h @@ -29,6 +29,9 @@ #ifndef _PRIVATE_SSP_H #define _PRIVATE_SSP_H +#include <stdint.h> +#include <sys/cdefs.h> + __BEGIN_DECLS /* GCC uses this on ARM and MIPS; we use it on x86 to set the guard in TLS. */ |