Sign in
mojo
/
mojo-tools
/
27d0e88f9491c00c039a930683685dbcd1e75122
/
.
/
fusl
/
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
);
}