mirror of
https://github.com/fluencelabs/musl
synced 2025-04-27 00:02:12 +00:00
13 lines
169 B
C
13 lines
169 B
C
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
int scanf(const char *fmt, ...)
|
||
|
{
|
||
|
int ret;
|
||
|
va_list ap;
|
||
|
va_start(ap, fmt);
|
||
|
ret = vscanf(fmt, ap);
|
||
|
va_end(ap);
|
||
|
return ret;
|
||
|
}
|