Index: fusl/src/stdio/setbuf.c |
diff --git a/fusl/src/stdio/setbuf.c b/fusl/src/stdio/setbuf.c |
index 74ad7834ae59f20b8a9c4e25ff471313e6776e24..1f68d6d927b6f59c1f52639c4bbb019832bf7b06 100644 |
--- a/fusl/src/stdio/setbuf.c |
+++ b/fusl/src/stdio/setbuf.c |
@@ -1,6 +1,5 @@ |
#include <stdio.h> |
-void setbuf(FILE *restrict f, char *restrict buf) |
-{ |
- setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ); |
+void setbuf(FILE* restrict f, char* restrict buf) { |
+ setvbuf(f, buf, buf ? _IOFBF : _IONBF, BUFSIZ); |
} |