Index: fusl/src/stdio/vprintf.c |
diff --git a/fusl/src/stdio/vprintf.c b/fusl/src/stdio/vprintf.c |
index 30d2bffa8821879fc28abac6cc3806b5788366ee..b225150ac96ef7afafa3910d183eb814e3f865ff 100644 |
--- a/fusl/src/stdio/vprintf.c |
+++ b/fusl/src/stdio/vprintf.c |
@@ -1,6 +1,5 @@ |
#include <stdio.h> |
-int vprintf(const char *restrict fmt, va_list ap) |
-{ |
- return vfprintf(stdout, fmt, ap); |
+int vprintf(const char* restrict fmt, va_list ap) { |
+ return vfprintf(stdout, fmt, ap); |
} |