2011-12-14  Kai Tietz  <ktietz@redhat.com>

        * stdio/ The printf-routines rework part 2
        * crt/ Avoid use of msvcrt printf functions
        * misc/ Likewise.


git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@4663 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/stdio/vsnwprintf.c b/mingw-w64-crt/stdio/vsnwprintf.c
index 5c336ba..ee7d016 100644
--- a/mingw-w64-crt/stdio/vsnwprintf.c
+++ b/mingw-w64-crt/stdio/vsnwprintf.c
@@ -8,9 +8,9 @@
 #include <stdarg.h>
 #include <wchar.h>
 
-int  __cdecl vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr);
+int  __cdecl __ms_vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr);
 
-int  __cdecl vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr)
+int  __cdecl __ms_vsnwprintf(wchar_t *buffer,  size_t n, const wchar_t * format, va_list argptr)
 {
     return _vsnwprintf(buffer, n, format, argptr);
 }