Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
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
);
}