From 11495b6f6a7bff4fc7effdbf670b5d482c36913d Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 24 Feb 2009 00:27:33 +0000 Subject: Fix __attribute__ (( __attribute__ ((noreturn)))), which doesn't compile. --- include/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/unistd.h b/include/unistd.h index 30621634a..d59f049e5 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -771,7 +771,7 @@ libc_hidden_proto(vfork) #endif /* Use BSD. */ /* Special exit function which only terminates the current thread. */ -extern void __exit_thread (int val) __attribute__ ((noreturn)); +extern void __exit_thread (int val) __attribute__ ((__noreturn__)); /* Return the pathname of the terminal FD is open on, or NULL on errors. The returned storage is good only until the next call to this function. */ -- cgit v1.2.3