mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 07:12:15 +00:00
GNU used several extensions that were incompatible with C99 and POSIX, so they used alternate names for the standard functions. The result is that we need these to run standards-conformant programs that were linked with glibc.
16 lines
249 B
C
16 lines
249 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(__isoc99_fscanf);
|