2011-12-16 15:44:37 +00:00
|
|
|
|
/*
|
|
|
|
|
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
|
|
|
|
|
* PROJECT: ReactOS crt library
|
2015-09-19 13:50:57 +00:00
|
|
|
|
* FILE: lib/sdk/crt/printf/vwprintf_s.c
|
2011-12-16 15:44:37 +00:00
|
|
|
|
* PURPOSE: Implementation of vwprintf
|
|
|
|
|
* PROGRAMMER: Samuel Serapi<EFBFBD>n
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define MINGW_HAS_SECURE_API 1
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
|
|
int
|
2013-09-14 10:28:30 +00:00
|
|
|
|
__cdecl
|
2011-12-16 15:44:37 +00:00
|
|
|
|
vwprintf_s(const wchar_t *format, va_list valist)
|
|
|
|
|
{
|
2013-09-14 10:28:30 +00:00
|
|
|
|
return vfwprintf_s(stdout, format, valist);
|
2011-12-16 15:44:37 +00:00
|
|
|
|
}
|