fix copy/paste error in popen changes that broke signals
[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);
 }