blob: 33a7e2bd897b54d893eee0205288d0a02a09004a [file] [log] [blame]
Kai Tietzc8c94d82007-08-20 14:22:43 +00001/**
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 Tietz518dd332007-08-10 09:54:15 +00006#include <_mingw.h>
7#include <stdarg.h>
8#include <wchar.h>
9
Kai Tietz23ebf792008-03-21 20:29:46 +000010int __cdecl vsnwprintf(wchar_t *buffer, size_t n, const wchar_t * format, va_list argptr)
Kai Tietz15384942008-03-02 16:28:21 +000011{
12 return _vsnwprintf(buffer, n, format, argptr);
13}