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

* socket.c: Don't include a prototype for inet_aton; just use a

K&R style declaration, to avoid warnings but minimize the chance
of conflicts with the system.
This commit is contained in:
Jim Blandy 1996-09-03 04:44:48 +00:00
parent bab0f4e553
commit 5bc433f5fd

View file

@ -66,11 +66,7 @@
int close P ((int fd));
#endif /* STDC_HEADERS */
#ifdef __STDC__
extern int inet_aton (const char *, struct in_addr *);
#else
extern int inet_aton ();
#endif
SCM_PROC (s_sys_inet_aton, "inet-aton", 1, 0, 0, scm_sys_inet_aton);
#ifdef __STDC__