| Index: fusl/src/ctype/isprint.c
|
| diff --git a/fusl/src/ctype/isprint.c b/fusl/src/ctype/isprint.c
|
| index 067275fa03e795ca0603ea1c99239265305c7dc9..e5b3e172e117c880d02ba941da9f47a5bacd68f0 100644
|
| --- a/fusl/src/ctype/isprint.c
|
| +++ b/fusl/src/ctype/isprint.c
|
| @@ -2,14 +2,12 @@
|
| #include "libc.h"
|
| #undef isprint
|
|
|
| -int isprint(int c)
|
| -{
|
| - return (unsigned)c-0x20 < 0x5f;
|
| +int isprint(int c) {
|
| + return (unsigned)c - 0x20 < 0x5f;
|
| }
|
|
|
| -int __isprint_l(int c, locale_t l)
|
| -{
|
| - return isprint(c);
|
| +int __isprint_l(int c, locale_t l) {
|
| + return isprint(c);
|
| }
|
|
|
| weak_alias(__isprint_l, isprint_l);
|
|
|