| Index: fusl/src/ctype/isgraph.c
|
| diff --git a/fusl/src/ctype/isgraph.c b/fusl/src/ctype/isgraph.c
|
| index a0aae08aabe69ae9eb70d832be044838d954cb7e..9a6bacc20e6da54c59034932c2878bd4bf0c0a30 100644
|
| --- a/fusl/src/ctype/isgraph.c
|
| +++ b/fusl/src/ctype/isgraph.c
|
| @@ -2,14 +2,12 @@
|
| #include "libc.h"
|
| #undef isgraph
|
|
|
| -int isgraph(int c)
|
| -{
|
| - return (unsigned)c-0x21 < 0x5e;
|
| +int isgraph(int c) {
|
| + return (unsigned)c - 0x21 < 0x5e;
|
| }
|
|
|
| -int __isgraph_l(int c, locale_t l)
|
| -{
|
| - return isgraph(c);
|
| +int __isgraph_l(int c, locale_t l) {
|
| + return isgraph(c);
|
| }
|
|
|
| weak_alias(__isgraph_l, isgraph_l);
|
|
|