mirror of
https://github.com/fluencelabs/musl
synced 2025-05-06 20:42:14 +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);
|
|
}
|