| Index: fusl/src/ctype/isxdigit.c
|
| diff --git a/fusl/src/ctype/isxdigit.c b/fusl/src/ctype/isxdigit.c
|
| index 0e9152a7b01661b08167eb8169518c8536092051..29ba9a3f891db8e2f196285e87301f82056654ed 100644
|
| --- a/fusl/src/ctype/isxdigit.c
|
| +++ b/fusl/src/ctype/isxdigit.c
|
| @@ -1,14 +1,12 @@
|
| #include <ctype.h>
|
| #include "libc.h"
|
|
|
| -int isxdigit(int c)
|
| -{
|
| - return isdigit(c) || ((unsigned)c|32)-'a' < 6;
|
| +int isxdigit(int c) {
|
| + return isdigit(c) || ((unsigned)c | 32) - 'a' < 6;
|
| }
|
|
|
| -int __isxdigit_l(int c, locale_t l)
|
| -{
|
| - return isxdigit(c);
|
| +int __isxdigit_l(int c, locale_t l) {
|
| + return isxdigit(c);
|
| }
|
|
|
| weak_alias(__isxdigit_l, isxdigit_l);
|
|
|