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