clean up sloppy nested inclusion from pthread_impl.h
[oweals/musl.git] / src / stdio / vsprintf.c
index 7836ccb26f088cd85dbbe82092cdad0fcf29106b..c57349d4d888d532b39a15d525d248b0eee3c48d 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <limits.h>
 
-int vsprintf(char *s, const char *fmt, va_list ap)
+int vsprintf(char *restrict s, const char *restrict fmt, va_list ap)
 {
        return vsnprintf(s, INT_MAX, fmt, ap);
 }