Home | History | Annotate | Download | only in musl-stdio
      1 #include <stdio.h>
      2 #include <stdarg.h>
      3 #include <wchar.h>
      4 #include "libc.h"
      5 
      6 int vwscanf(const wchar_t *restrict fmt, va_list ap)
      7 {
      8 	return vfwscanf(stdin, fmt, ap);
      9 }
     10 
     11 weak_alias(vwscanf,__isoc99_vwscanf);
     12