* inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
authorSimon Josefsson <simon@josefsson.org>
Wed, 9 Nov 2005 00:58:57 +0000 (00:58 +0000)
committerSimon Josefsson <simon@josefsson.org>
Wed, 9 Nov 2005 00:58:57 +0000 (00:58 +0000)
lib/ChangeLog
lib/inet_ntop.h

index 1164ad080a07c038f95d0365b7dc62f96534a7b0..91db74a39c2f4af7f8671e4936d6aecf13972cbd 100644 (file)
@@ -1,3 +1,7 @@
+2005-11-08  Eric Blake  <ebb9@byu.net>
+
+       * inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
+
 2005-11-08  Eric Blake  <ebb9@byu.net>
 
        * getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
index 661dca641c350ec2e0e1dc44c1a4ee858772b509..83f5edf3374d403b5d0e836a160df9eb504afade 100644 (file)
@@ -39,7 +39,7 @@
    For more details, see the POSIX:2001 specification
    <http://www.opengroup.org/susv3xsh/inet_ntop.html>.  */
 
-#ifndef HAVE_DECL_INET_NTOP
+#if !HAVE_DECL_INET_NTOP
 extern const char *inet_ntop (int af, const void *restrict src,
                              char *restrict dst, socklen_t cnt);
 #endif