fix indention with spaces in powerpc asm
[oweals/musl.git] / src / stdio / fputs.c
index e6bdb204ab0ffe8d3b7b5b028ba3552fc9f3ce55..1112b192c06b49528862fec0168f5af2527d1886 100644 (file)
@@ -1,6 +1,7 @@
 #include "stdio_impl.h"
+#include <string.h>
 
-int fputs(const char *s, FILE *f)
+int fputs(const char *restrict s, FILE *restrict f)
 {
        size_t l = strlen(s);
        if (!l) return 0;