fix remaining direct use of stat syscalls outside fstatat.c
[musl] / src / stdio / swscanf.c
index 1fe3c3d..03d572d 100644 (file)
@@ -1,4 +1,3 @@
-#include <stdio.h>
 #include <stdarg.h>
 #include <wchar.h>
 
@@ -11,3 +10,5 @@ int swscanf(const wchar_t *restrict s, const wchar_t *restrict fmt, ...)
        va_end(ap);
        return ret;
 }
+
+weak_alias(swscanf,__isoc99_swscanf);