blob: 7b9c867ec3023d98d956cc8ef6bb9a6de9656fa5 [file] [log] [blame]
/**
* This file has no copyright assigned and is placed in the Public Domain.
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER.PD within this package.
*/
#include <stdio.h>
int __cdecl fputws(const wchar_t * __restrict__ _Str, FILE * __restrict__ _File)
{
return __ms_fwprintf(_File, L"%ls", _Str);
}