diff options
| author | Rob Landley <rob@landley.net> | 2009-02-24 00:27:33 +0000 |
|---|---|---|
| committer | Austin Foxley <austinf@cetoncorp.com> | 2009-09-18 16:06:48 -0700 |
| commit | 9c98c1a161ea32230f21975cdb4b4b2c72d08763 (patch) | |
| tree | 86bc9b4ce8daa31da117bf6467ad645bd2157974 | |
| parent | 6c9dd62c2c397247bd6dcca01360b6c600cc44f2 (diff) | |
| download | uClibc-alpine-9c98c1a161ea32230f21975cdb4b4b2c72d08763.tar.bz2 uClibc-alpine-9c98c1a161ea32230f21975cdb4b4b2c72d08763.tar.xz | |
Fix __attribute__ (( __attribute__ ((noreturn)))), which doesn't compile.
Signed-off-by: Rob Landley <rob@landley.net>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
| -rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index 961f4fd95..5d3a4cb8f 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. */ |
