Index: fusl/src/ctype/iswgraph.c |
diff --git a/fusl/src/ctype/iswgraph.c b/fusl/src/ctype/iswgraph.c |
index 0ea5ca3a4d57ea52c08ea53ea78df5e6b17c00d9..77f3576d66f7a07e7341b3305df28de9ed5bb9e5 100644 |
--- a/fusl/src/ctype/iswgraph.c |
+++ b/fusl/src/ctype/iswgraph.c |
@@ -1,15 +1,13 @@ |
#include <wctype.h> |
#include "libc.h" |
-int iswgraph(wint_t wc) |
-{ |
- /* ISO C defines this function as: */ |
- return !iswspace(wc) && iswprint(wc); |
+int iswgraph(wint_t wc) { |
+ /* ISO C defines this function as: */ |
+ return !iswspace(wc) && iswprint(wc); |
} |
-int __iswgraph_l(wint_t c, locale_t l) |
-{ |
- return iswgraph(c); |
+int __iswgraph_l(wint_t c, locale_t l) { |
+ return iswgraph(c); |
} |
weak_alias(__iswgraph_l, iswgraph_l); |