diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-04 23:46:30 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-04 23:46:30 +0000 |
commit | 645044b837c06aec62661e2aff9bea07fc2dd76a (patch) | |
tree | a605646854d6d373dd42a801ca389355531c8432 /libc/sysdeps/linux/common/ssp-local.c | |
parent | 5e33a1af5254e5cd520a5943464138ade1071807 (diff) |
one reloc less, uninline, should save some space
Diffstat (limited to 'libc/sysdeps/linux/common/ssp-local.c')
-rw-r--r-- | libc/sysdeps/linux/common/ssp-local.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/ssp-local.c b/libc/sysdeps/linux/common/ssp-local.c index 091c34c5d..11ae654c8 100644 --- a/libc/sysdeps/linux/common/ssp-local.c +++ b/libc/sysdeps/linux/common/ssp-local.c @@ -23,7 +23,7 @@ #include <features.h> -extern void __stack_chk_fail (void) attribute_noreturn; +extern void __stack_chk_fail_internal (void) attribute_noreturn; /* On some architectures, this helps needless PIC pointer setup that would be needed just for the __stack_chk_fail call. */ @@ -31,5 +31,5 @@ extern void __stack_chk_fail (void) attribute_noreturn; void attribute_noreturn attribute_hidden __stack_chk_fail_local (void) { - __stack_chk_fail (); + __stack_chk_fail_internal (); } |