From 26f5fc4241453871760a5df0905d92e6e4f09a39 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 9 Jan 2006 19:45:23 +0000 Subject: Hope I have it correct now w/ native gcc4 ssp --- libc/sysdeps/linux/common/ssp-local.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common/ssp-local.c') diff --git a/libc/sysdeps/linux/common/ssp-local.c b/libc/sysdeps/linux/common/ssp-local.c index 11ae654c8..091c34c5d 100644 --- a/libc/sysdeps/linux/common/ssp-local.c +++ b/libc/sysdeps/linux/common/ssp-local.c @@ -23,7 +23,7 @@ #include -extern void __stack_chk_fail_internal (void) attribute_noreturn; +extern void __stack_chk_fail (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_internal (void) attribute_noreturn; void attribute_noreturn attribute_hidden __stack_chk_fail_local (void) { - __stack_chk_fail_internal (); + __stack_chk_fail (); } -- cgit v1.2.3