diff options
author | Stefan Jahn <stefan@lkcc.org> | 2002-02-27 15:41:01 +0000 |
---|---|---|
committer | Stefan Jahn <stefan@lkcc.org> | 2002-02-27 15:41:01 +0000 |
commit | edb810bb84ca1198d4ff34712877ee681b15c5fb (patch) | |
tree | fcad43dec94868a53aede4540d0853ede131ea4a /libguile/inet_aton.c | |
parent | d51b42e28b4135545b5e5932b5a55210328fa706 (diff) | |
download | guile-edb810bb84ca1198d4ff34712877ee681b15c5fb.tar.gz |
2002-02-27 Stefan Jahn <stefan@lkcc.org>
* Makefile.am (SUBDIRS): Added the `am' directory.
2002-02-27 Stefan Jahn <stefan@lkcc.org>
* gh.texi (scm transition summary): Documented some more
gh equivalents and removed appropriate FIXME's.
2002-02-27 Stefan Jahn <stefan@lkcc.org>
* Makefile.am (EXTRA_DIST): Added the `LIBGUILEREADLINE-VERSION'
file.
2002-02-27 Stefan Jahn <stefan@lkcc.org>
* convert.i.c, convert.c: Better range checking.
* inet_aton.c, fports.c: Commented the inclusion of <winsock2.h>.
* deprecation.c (vsnprintf): Define to `_vsnprintf' for
Windows (MinGW).
Diffstat (limited to 'libguile/inet_aton.c')
-rw-r--r-- | libguile/inet_aton.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/inet_aton.c b/libguile/inet_aton.c index f8e92541f..fe43d6eb2 100644 --- a/libguile/inet_aton.c +++ b/libguile/inet_aton.c @@ -39,6 +39,7 @@ static char sccsid[] = "@(#)inet_addr.c 8.1 (Berkeley) 6/17/93"; #include <ctype.h> #ifdef __MINGW32__ +/* Include for MinGW only. Cygwin will have the latter. */ #include <winsock2.h> #else #include <sys/param.h> |