Sign in
cobalt
/
cobalt
/
6c50c1c49c8a70d13dcb47674d70da002e02256c
/
.
/
third_party
/
musl
/
src
/
stdio
/
vscanf.c
blob: 9d46ab09d506bd96459d02d6302e3634340ba12e [
file
]
#include
<stdio.h>
#include
<stdarg.h>
int
vscanf
(
const
char
*
restrict fmt
,
va_list ap
)
{
return
vfscanf
(
stdin
,
fmt
,
ap
);
}
weak_alias
(
vscanf
,
__isoc99_vscanf
);