mirror of
https://github.com/fluencelabs/musl
synced 2025-05-05 12:02:13 +00:00
16 lines
257 B
C
16 lines
257 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "libc.h"
|
|
|
|
int fscanf(FILE *restrict f, const char *restrict fmt, ...)
|
|
{
|
|
int ret;
|
|
va_list ap;
|
|
va_start(ap, fmt);
|
|
ret = vfscanf(f, fmt, ap);
|
|
va_end(ap);
|
|
return ret;
|
|
}
|
|
|
|
weak_alias(fscanf, __isoc99_fscanf);
|