* 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 1164ad0..91db74a 100644 (file)
@@ -1,5 +1,9 @@
 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.
 
 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
index 661dca6..83f5edf 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