Sign in
cobalt
/
cobalt
/
25399f97090f8a86f56525c38486080cb2747250
/
.
/
src
/
third_party
/
musl
/
src
/
stdio
/
vprintf.c
blob: 30d2bffa8821879fc28abac6cc3806b5788366ee [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
vprintf
(
const
char
*
restrict fmt
,
va_list ap
)
{
return
vfprintf
(
stdout
,
fmt
,
ap
);
}