mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 00:21:34 +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);
|
|
}
|