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/deprecation.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/deprecation.c')
-rw-r--r-- | libguile/deprecation.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libguile/deprecation.c b/libguile/deprecation.c index 17f3641dc..55a82aa4f 100644 --- a/libguile/deprecation.c +++ b/libguile/deprecation.c @@ -51,6 +51,11 @@ #include "libguile/strings.h" #include "libguile/ports.h" +/* Windows defines. */ +#ifdef __MINGW32__ +#define vsnprintf _vsnprintf +#endif + #if (SCM_ENABLE_DEPRECATED == 1) |