Index: fusl/src/multibyte/btowc.c |
diff --git a/fusl/src/multibyte/btowc.c b/fusl/src/multibyte/btowc.c |
index 8acd0a2cf1002ccda866949f0c528bd3bdd6fa50..bc164500d318d54e8b9b5cbd129daafbc1e26c8d 100644 |
--- a/fusl/src/multibyte/btowc.c |
+++ b/fusl/src/multibyte/btowc.c |
@@ -3,8 +3,7 @@ |
#include <stdlib.h> |
#include "internal.h" |
-wint_t btowc(int c) |
-{ |
- int b = (unsigned char)c; |
- return b<128U ? b : (MB_CUR_MAX==1 && c!=EOF) ? CODEUNIT(c) : WEOF; |
+wint_t btowc(int c) { |
+ int b = (unsigned char)c; |
+ return b < 128U ? b : (MB_CUR_MAX == 1 && c != EOF) ? CODEUNIT(c) : WEOF; |
} |