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