+2011-09-10 Bruno Haible <bruno@clisp.org>
+
+ iconv.m4: Add support for MSVC compiler.
+ * iconv.m4 (AM_ICONV): Use ISO C declaration syntax on MSVC.
+
2011-07-07 Bruno Haible <bruno@clisp.org>
Avoid literal tabs.
-# iconv.m4 serial 17 (gettext-0.18.2)
+# iconv.m4 serial 18 (gettext-0.18.2)
dnl Copyright (C) 2000-2002, 2007-2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
#ifdef __cplusplus
"C"
#endif
-#if defined(__STDC__) || defined(__cplusplus)
+#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus)
size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
#else
size_t iconv();