mirror of
https://github.com/fluencelabs/musl
synced 2025-04-25 15:22: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.
12 lines
207 B
C
12 lines
207 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <wchar.h>
|
|
#include "libc.h"
|
|
|
|
int vwscanf(const wchar_t *restrict fmt, va_list ap)
|
|
{
|
|
return vfwscanf(stdin, fmt, ap);
|
|
}
|
|
|
|
weak_alias(vwscanf,__isoc99_vwscanf);
|