2009-07-27 Ozkan Sezer <sezeroz@gmail.com>
* misc/imaxabs.c: Define __CRT__NO_INLINE before the includes to prevent
declaration mismatches.
* stdio/_Exit.c: Likewise.
* stdio/atoll.c: Likewise.
* stdio/lltoa.c: Likewise.
* stdio/lltow.c: Likewise.
* stdio/ulltoa.c: Likewise.
* stdio/ulltow.c: Likewise.
* stdio/vsnprintf.c: Likewise.
* stdio/vsnwprintf.c: Likewise.
* stdio/wtoll.c: Likewise.
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1055 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/stdio/vsnwprintf.c b/mingw-w64-crt/stdio/vsnwprintf.c
index 33a7e2b..afe735f 100644
--- a/mingw-w64-crt/stdio/vsnwprintf.c
+++ b/mingw-w64-crt/stdio/vsnwprintf.c
@@ -1,13 +1,14 @@
-/**
- * This file has no copyright assigned and is placed in the Public Domain.
- * This file is part of the w64 mingw-runtime package.
- * No warranty is given; refer to the file DISCLAIMER within this package.
- */
-#include <_mingw.h>
-#include <stdarg.h>
-#include <wchar.h>
-
-int __cdecl vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr)
-{
- return _vsnwprintf(buffer, n, format, argptr);
-}
+/**
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * This file is part of the w64 mingw-runtime package.
+ * No warranty is given; refer to the file DISCLAIMER within this package.
+ */
+#define __CRT__NO_INLINE
+#include <_mingw.h>
+#include <stdarg.h>
+#include <wchar.h>
+
+int __cdecl vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr)
+{
+ return _vsnwprintf(buffer, n, format, argptr);
+}