diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-05-20 18:07:09 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-20 18:07:09 +0000 |
commit | 8c883ca477b30d388ac92fbb83e01e80602d6af0 (patch) | |
tree | ac9f39f237f9940f152cc87dbf2bd5f9f9baabd2 /include/libc | |
parent | 9611192b8dd75ccaf46210bc90bca1303a63511d (diff) | |
download | openbios-8c883ca477b30d388ac92fbb83e01e80602d6af0.zip openbios-8c883ca477b30d388ac92fbb83e01e80602d6af0.tar.gz openbios-8c883ca477b30d388ac92fbb83e01e80602d6af0.tar.bz2 |
Fix stack protector problems with newer GCC versions
git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@490 f158a5a8-5612-0410-a976-696ce0be7e32
Diffstat (limited to 'include/libc')
-rw-r--r-- | include/libc/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libc/string.h b/include/libc/string.h index 53054a2..1f54e6b 100644 --- a/include/libc/string.h +++ b/include/libc/string.h @@ -103,5 +103,6 @@ extern int errno_int; extern long __guard[8]; void __stack_smash_handler(const char *func, int damaged); +void __stack_chk_fail(void); #endif /* _H_STRING */ |