Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
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
);
}