mirror of
https://github.com/fluencelabs/musl
synced 2025-06-24 04:01:56 +00:00
initial check-in, version 0.5.0
This commit is contained in:
7
src/stdio/vscanf.c
Normal file
7
src/stdio/vscanf.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
int vscanf(const char *fmt, va_list ap)
|
||||
{
|
||||
return vfscanf(stdin, fmt, ap);
|
||||
}
|
Reference in New Issue
Block a user