mirror of
https://github.com/fluencelabs/musl
synced 2025-05-03 02:52:16 +00:00
9 lines
141 B
C
9 lines
141 B
C
|
#include <stdio.h>
|
||
|
#include <stdarg.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
int vwscanf(const wchar_t *fmt, va_list ap)
|
||
|
{
|
||
|
return vfwscanf(stdin, fmt, ap);
|
||
|
}
|