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/_exit.c | |
parent | 9a6b1a71ca970e4355c6c970e4be9786407e085a (diff) |
Make use of newly introduced attribute_noreturn
Diffstat (limited to 'libc/sysdeps/linux/common/_exit.c')
-rw-r--r-- | libc/sysdeps/linux/common/_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/_exit.c b/libc/sysdeps/linux/common/_exit.c index 3b7d14d62..d0a4ee1d6 100644 --- a/libc/sysdeps/linux/common/_exit.c +++ b/libc/sysdeps/linux/common/_exit.c @@ -32,7 +32,7 @@ static inline _syscall1(void, __syscall_exit, int, status); #endif -void __attribute__ ((noreturn)) _exit(int status) +void attribute_noreturn _exit(int status) { /* The loop is added only to keep gcc happy. */ while(1) |