1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* net_db.c: declare inet_aton only if HAVE_INET_ATON is not

defined.  thanks to Han-Wen Nienhuys.
	(replacing the previously committed change)
This commit is contained in:
Gary Houston 2000-10-01 11:05:52 +00:00
parent 5574f075e4
commit 0d26a8bca9
2 changed files with 2 additions and 2 deletions

View 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>

View 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