]> sourceware.org Git - glibc.git/commitdiff
2006-07-30 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Mon, 31 Jul 2006 05:57:52 +0000 (05:57 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 31 Jul 2006 05:57:52 +0000 (05:57 +0000)
* include/unistd.h (__pause_nocancel): Add attribute_hidden.
* include/time.h (__nanosleep_nocancel): Likewise.

include/time.h
include/unistd.h

index f2a6489efd1886feab70f4113aba9e38361c9b1a..d71f985014efecf03c19baa8bae949f30cda10be 100644 (file)
@@ -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);
 
 
index fb7a044b5794253e01727845c80349fabe6c5a59..f34d53f223568c8c2d4db189193ff4dc99304e98 100644 (file)
@@ -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
This page took 0.048234 seconds and 5 git commands to generate.