Sign in
cobalt
/
cobalt
/
97b64f26fb12c9eab352139c26f0b01d1cb6d0b9
/
.
/
third_party
/
musl
/
src
/
stdio
/
vwprintf.c
blob: eeeecdc7c62ae1508d135eeb5e52095550cbb0f6 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<wchar.h>
int
vwprintf
(
const
wchar_t
*
restrict fmt
,
va_list ap
)
{
return
vfwprintf
(
stdout
,
fmt
,
ap
);
}