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/time.h | |
parent | c10d32c83429239be3c7d7159aa0e558f6e97bcc (diff) | |
download | glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.tar glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.tar.gz glibc-b32e6700d0a114c0132bd94cc1b49332a364dc8c.tar.bz2 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/time.h')
-rw-r--r-- | include/time.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/time.h b/include/time.h index f2a6489efd..d71f985014 100644 --- a/include/time.h +++ b/include/time.h @@ -81,9 +81,10 @@ extern long int __tzname_max (void); extern int __nanosleep (__const struct timespec *__requested_time, struct timespec *__remaining); +libc_hidden_proto (__nanosleep) extern int __nanosleep_nocancel (__const struct timespec *__requested_time, - struct timespec *__remaining); -libc_hidden_proto(__nanosleep) + struct timespec *__remaining) + attribute_hidden; extern int __getdate_r (__const char *__string, struct tm *__resbufp); |