diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-04 00:32:26 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-04 00:32:26 +0000 |
commit | aeed8fa791a55eef54e25bb4d49ae8c19b441082 (patch) | |
tree | a32ddd8a3e2296d6cac9ee98894fea36fd78ff1f /libc/sysdeps/linux/common/ssp-local.c | |
parent | 9a6b1a71ca970e4355c6c970e4be9786407e085a (diff) |
Make use of newly introduced attribute_noreturn
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 a835ced0e..091c34c5d 100644 --- a/libc/sysdeps/linux/common/ssp-local.c +++ b/libc/sysdeps/linux/common/ssp-local.c @@ -23,12 +23,12 @@ #include <features.h> -extern void __stack_chk_fail (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. */ -void __attribute__ ((noreturn)) attribute_hidden +void attribute_noreturn attribute_hidden __stack_chk_fail_local (void) { __stack_chk_fail (); |