move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stdio / swscanf.c
blob03d572da1c3f2693fc30e56ec3794b35ce1a86ce
1 #include <stdarg.h>
2 #include <wchar.h>
4 int swscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, ...)
6 int ret;
7 va_list ap;
8 va_start(ap, fmt);
9 ret = vswscanf(s, fmt, ap);
10 va_end(ap);
11 return ret;
14 weak_alias(swscanf,__isoc99_swscanf);