blob: b5c5ae65cf74227f39ef3908540668f34e228691 [file] [log] [blame]
Ozkan Sezer7f7152e2009-07-27 08:38:43 +00001/**
2 * This file has no copyright assigned and is placed in the Public Domain.
Rafaël Carré8a67ab42012-06-28 15:40:59 +00003 * This file is part of the mingw-w64 runtime package.
Kai Tietzfa0cfe32010-01-15 20:02:21 +00004 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
Ozkan Sezer7f7152e2009-07-27 08:38:43 +00005 */
6#define __CRT__NO_INLINE
7#include <_mingw.h>
8#include <stdarg.h>
9#include <wchar.h>
10
Kai Tietzf4d07112011-12-14 14:34:17 +000011int __cdecl __ms_vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr);
Kai Tietzea90d982009-08-25 17:22:01 +000012
Kai Tietzf4d07112011-12-14 14:34:17 +000013int __cdecl __ms_vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr)
Ozkan Sezer7f7152e2009-07-27 08:38:43 +000014{
15 return _vsnwprintf(buffer, n, format, argptr);
16}