mirror of
https://github.com/fluencelabs/musl
synced 2025-05-23 04:31:32 +00:00
8 lines
117 B
C
8 lines
117 B
C
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
int vscanf(const char *fmt, va_list ap)
|
||
|
{
|
||
|
return vfscanf(stdin, fmt, ap);
|
||
|
}
|