crypt: fix the prototype of md5_sum, sha256_sum and sha512_sum
[musl] / src / stdio / vwscanf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3 #include <wchar.h>
4
5 int vwscanf(const wchar_t *restrict fmt, va_list ap)
6 {
7         return vfwscanf(stdin, fmt, ap);
8 }