Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d4-s2-release
/
.
/
src
/
stdio
/
vprintf.c
blob: 30d2bffa8821879fc28abac6cc3806b5788366ee [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
vprintf
(
const
char
*
restrict fmt
,
va_list ap
)
{
return
vfprintf
(
stdout
,
fmt
,
ap
);
}