Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
com32
/
lib
/
vprintf.c
blob: 486f7200ab45a07931c30b184155f5d5fef160de [
file
] [
log
] [
blame
] [
edit
]
/*
* vprintf.c
*/
#include
<stdio.h>
#include
<stdarg.h>
int
vprintf
(
const
char
*
format
,
va_list ap
)
{
return
vfprintf
(
stdout
,
format
,
ap
);
}