* getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
authorSimon Josefsson <simon@josefsson.org>
Tue, 8 Nov 2005 19:20:59 +0000 (19:20 +0000)
committerSimon Josefsson <simon@josefsson.org>
Tue, 8 Nov 2005 19:20:59 +0000 (19:20 +0000)
lib/ChangeLog
lib/getaddrinfo.h

index 767231d4c3a9ad490de01da318197876853fa5f2..1164ad080a07c038f95d0365b7dc62f96534a7b0 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-08  Eric Blake  <ebb9@byu.net>
+
+       * getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
+
 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
 
        Fix porting problem reported by Theodoros V. Kalamatianos.
index 54c9198bbb7f7e71ff231bc177c9c0fbf7839425..65f52cda634e975c763a41b4e244d07d48c9df7a 100644 (file)
@@ -82,7 +82,7 @@ struct addrinfo
 #  endif
 # endif
 
-# ifndef HAVE_DECL_GETADDRINFO
+# if !HAVE_DECL_GETADDRINFO
 /* Translate name of a service location and/or a service name to set of
    socket addresses.
    For more details, see the POSIX:2001 specification
@@ -93,14 +93,14 @@ extern int getaddrinfo (const char *restrict nodename,
                        struct addrinfo **restrict res);
 # endif
 
-# ifndef HAVE_DECL_FREEADDRINFO
+# if !HAVE_DECL_FREEADDRINFO
 /* Free `addrinfo' structure AI including associated storage.
    For more details, see the POSIX:2001 specification
    <http://www.opengroup.org/susv3xsh/getaddrinfo.html>.  */
 extern void freeaddrinfo (struct addrinfo *ai);
 # endif
 
-# ifndef HAVE_DECL_GAI_STRERROR
+# if !HAVE_DECL_GAI_STRERROR
 /* Convert error return from getaddrinfo() to a string.
    For more details, see the POSIX:2001 specification
    <http://www.opengroup.org/susv3xsh/gai_strerror.html>.  */