Kai Tietz | c8c94d8 | 2007-08-20 14:22:43 +0000 | [diff] [blame] | 1 | /**
|
| 2 | * This file has no copyright assigned and is placed in the Public Domain.
|
| 3 | * This file is part of the w64 mingw-runtime package.
|
| 4 | * No warranty is given; refer to the file DISCLAIMER within this package.
|
| 5 | */
|
Kai Tietz | 518dd33 | 2007-08-10 09:54:15 +0000 | [diff] [blame] | 6 | #include <_mingw.h>
|
| 7 | #include <stdarg.h>
|
| 8 | #include <wchar.h>
|
| 9 |
|
Kai Tietz | 23ebf79 | 2008-03-21 20:29:46 +0000 | [diff] [blame] | 10 | int __cdecl vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr)
|
Kai Tietz | 1538494 | 2008-03-02 16:28:21 +0000 | [diff] [blame] | 11 | {
|
| 12 | return _vsnwprintf(buffer, n, format, argptr);
|
| 13 | }
|