Index: fusl/src/stdio/putwchar.c |
diff --git a/fusl/src/stdio/putwchar.c b/fusl/src/stdio/putwchar.c |
index b249c4ac10997061355a261ff15cda08743183d9..d4c346385d03775be026b64558a51d451de8bf27 100644 |
--- a/fusl/src/stdio/putwchar.c |
+++ b/fusl/src/stdio/putwchar.c |
@@ -1,9 +1,8 @@ |
#include "stdio_impl.h" |
#include <wchar.h> |
-wint_t putwchar(wchar_t c) |
-{ |
- return fputwc(c, stdout); |
+wint_t putwchar(wchar_t c) { |
+ return fputwc(c, stdout); |
} |
weak_alias(putwchar, putwchar_unlocked); |