Sign in
mojo
/
mojo-tools
/
d3bdee862d3e247d64145c167ea593171d1f600f
/
.
/
fusl
/
src
/
stdio
/
vprintf.c
blob: b225150ac96ef7afafa3910d183eb814e3f865ff [
file
]
#include
<stdio.h>
int
vprintf
(
const
char
*
restrict fmt
,
va_list ap
)
{
return
vfprintf
(
stdout
,
fmt
,
ap
);
}