diff options
author | Roland McGrath <roland@gnu.org> | 2006-07-31 05:57:52 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-07-31 05:57:52 +0000 |
commit | b32e6700d0a114c0132bd94cc1b49332a364dc8c (patch) | |
tree | 96e89ae71927b90ac0f037775a9a26af1129a122 /include/unistd.h | |
parent | c10d32c83429239be3c7d7159aa0e558f6e97bcc (diff) | |
download | glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.tar.gz glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.tar.xz glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.zip |
2006-07-30 Roland McGrath <roland@redhat.com>
* include/unistd.h (__pause_nocancel): Add attribute_hidden. * include/time.h (__nanosleep_nocancel): Likewise.
Diffstat (limited to 'include/unistd.h')
-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 fb7a044b57..f34d53f223 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -163,6 +163,6 @@ extern __pid_t __libc_fork (void); This always returns -1 and sets `errno' to EINTR. */ extern int __libc_pause (void); /* Not cancelable variant. */ -extern int __pause_nocancel (void); +extern int __pause_nocancel (void) attribute_hidden; #endif |