fix indention with spaces in powerpc asm
[oweals/musl.git] / src / stdio / vscanf.c
index 6f55b1c3ac6d413a4d3d6175ee7cf7aec892dc26..6901958a61d03b52e10f9436b7734712ff41c997 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <stdarg.h>
 
-int vscanf(const char *fmt, va_list ap)
+int vscanf(const char *restrict fmt, va_list ap)
 {
        return vfscanf(stdin, fmt, ap);
 }