Ozkan Sezer | 7f7152e | 2009-07-27 08:38:43 +0000 | [diff] [blame] | 1 | /** |
| 2 | * This file has no copyright assigned and is placed in the Public Domain. |
Rafaël Carré | 8a67ab4 | 2012-06-28 15:40:59 +0000 | [diff] [blame] | 3 | * This file is part of the mingw-w64 runtime package. |
Kai Tietz | fa0cfe3 | 2010-01-15 20:02:21 +0000 | [diff] [blame] | 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package. |
Ozkan Sezer | 7f7152e | 2009-07-27 08:38:43 +0000 | [diff] [blame] | 5 | */ |
| 6 | #define __CRT__NO_INLINE |
| 7 | #include <_mingw.h> |
| 8 | #include <stdarg.h> |
| 9 | #include <wchar.h> |
| 10 | |
Kai Tietz | f4d0711 | 2011-12-14 14:34:17 +0000 | [diff] [blame] | 11 | int __cdecl __ms_vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr); |
Kai Tietz | ea90d98 | 2009-08-25 17:22:01 +0000 | [diff] [blame] | 12 | |
Kai Tietz | f4d0711 | 2011-12-14 14:34:17 +0000 | [diff] [blame] | 13 | int __cdecl __ms_vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr) |
Ozkan Sezer | 7f7152e | 2009-07-27 08:38:43 +0000 | [diff] [blame] | 14 | { |
| 15 | return _vsnwprintf(buffer, n, format, argptr); |
| 16 | } |