mirror of
https://github.com/fluencelabs/musl
synced 2025-06-19 09:51:44 +00:00
initial check-in, version 0.5.0
This commit is contained in:
12
src/stdio/scanf.c
Normal file
12
src/stdio/scanf.c
Normal file
@ -0,0 +1,12 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user