]> sourceware.org Git - glibc.git/commitdiff
Relax visibility of some more declaration.
authorUlrich Drepper <drepper@redhat.com>
Thu, 14 Jan 2010 21:22:06 +0000 (13:22 -0800)
committerUlrich Drepper <drepper@redhat.com>
Thu, 14 Jan 2010 21:22:06 +0000 (13:22 -0800)
ChangeLog
posix/unistd.h
resolv/netdb.h

index 40eddbcf967f3bc426054fdfdbf373b55574d12a..3cf70a99d57fc2b63e2cba52e4d64f9f1430a8f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2010-01-14  Ulrich Drepper  <drepper@redhat.com>
 
+       * posix/unistd.h: Change getpagesize and getdtablesize declaration
+       visibility some more.
+
        * resolv/netdb.h: Relax condition to elide obsolete resolver constants.
 
        * posix/unistd.h: Declare getpagesize in _GNU_SOURCE mode.
index 611ddf02d1f348887e8d6304abbd53ff3a62b95f..d134ecf76b7b7eec97b57cef0050ec0d48ee3377 100644 (file)
@@ -986,16 +986,16 @@ extern long int gethostid (void);
 extern void sync (void) __THROW;
 
 
-# if defined __USE_GNU || !defined __USE_XOPEN2K
+# if defined __USE_BSD || !defined __USE_XOPEN2K
 /* Return the number of bytes in a page.  This is the system's page size,
    which is not necessarily the same as the hardware page size.  */
 extern int getpagesize (void)  __THROW __attribute__ ((__const__));
-# endif
 
 
 /* Return the maximum number of file descriptors
    the current process could possibly have.  */
 extern int getdtablesize (void) __THROW;
+# endif
 
 #endif /* Use BSD || X/Open Unix.  */
 
index d72048cb4c9a0ddf7623fba66d634386421d6538..7671c6aca5bb6fb9133549ad745c27b300eb5306 100644 (file)
@@ -53,7 +53,7 @@
 
 __BEGIN_DECLS
 
-#if defined __USE_MISC || defined __USE_GNU || !defined __USE_XOPEN2K8
+#if defined __USE_MISC || !defined __USE_XOPEN2K8
 /* Error status for non-reentrant lookup functions.
    We use a macro to access always the thread-specific `h_errno' variable.  */
 # define h_errno (*__h_errno_location ())
@@ -87,7 +87,7 @@ extern int *__h_errno_location (void) __THROW __attribute__ ((__const__));
 # define SCOPE_DELIMITER       '%'
 #endif
 
-#if defined __USE_MISC || defined __USE_GNU
+#ifdef __USE_MISC
 /* Print error indicated by `h_errno' variable on standard error.  STR
    if non-null is printed before the error string.  */
 extern void herror (__const char *__str) __THROW;
This page took 0.057079 seconds and 5 git commands to generate.