Sign in
mojo
/
mojo-tools
/
711b2f1e6d912e6514b3a4f74068104ddd79a4b5
/
.
/
fusl
/
src
/
stdio
/
vwprintf.c
blob: eeeecdc7c62ae1508d135eeb5e52095550cbb0f6 [
file
]
#include
<stdio.h>
#include
<wchar.h>
int
vwprintf
(
const
wchar_t
*
restrict fmt
,
va_list ap
)
{
return
vfwprintf
(
stdout
,
fmt
,
ap
);
}