summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/_exit.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-04 00:32:26 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-04 00:32:26 +0000
commitaeed8fa791a55eef54e25bb4d49ae8c19b441082 (patch)
treea32ddd8a3e2296d6cac9ee98894fea36fd78ff1f /libc/sysdeps/linux/common/_exit.c
parent9a6b1a71ca970e4355c6c970e4be9786407e085a (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.c2
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)