* net_db.c: declare inet_aton only if HAVE_INET_ATON is not
authorGary Houston <ghouston@arglist.com>
Sun, 1 Oct 2000 11:05:52 +0000 (11:05 +0000)
committerGary Houston <ghouston@arglist.com>
Sun, 1 Oct 2000 11:05:52 +0000 (11:05 +0000)
defined.  thanks to Han-Wen Nienhuys.
(replacing the previously committed change)

libguile/ChangeLog
libguile/net_db.c

index 72c99f1..d53bac2 100644 (file)
@@ -1,6 +1,6 @@
 2000-10-01  Gary Houston  <ghouston@arglist.com>
 
-       * net_db.c: declare inet_aton only if MISSING_INET_ATON_DECL is
+       * net_db.c: declare inet_aton only if HAVE_INET_ATON is not
        defined.  thanks to Han-Wen Nienhuys.
 
 2000-09-30  Gary Houston  <ghouston@arglist.com>
index b8b5b2f..1df26f4 100644 (file)
@@ -80,7 +80,7 @@ extern int h_errno;
 int close ();
 #endif /* STDC_HEADERS */
 
-#ifdef MISSING_INET_ATON_DECL
+#ifndef HAVE_INET_ATON
 extern int inet_aton ();
 #endif