math: x86_64 version of expl, fixed some comments in the i386 version
[musl] / src / stdio / vwprintf.c
index c1923e6..eeeecdc 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <wchar.h>
 
-int vwprintf(const wchar_t *fmt, va_list ap)
+int vwprintf(const wchar_t *restrict fmt, va_list ap)
 {
        return vfwprintf(stdout, fmt, ap);
 }