diff options
Diffstat (limited to 'src/ctype/isxdigit.c')
-rw-r--r-- | src/ctype/isxdigit.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ctype/isxdigit.c b/src/ctype/isxdigit.c index 30d9205c..a534d2f0 100644 --- a/src/ctype/isxdigit.c +++ b/src/ctype/isxdigit.c @@ -1,7 +1,5 @@ -#if 0 - #include <limits.h> -#include "_assert.h" +#include <stdio.h> #include "_ctype.h" /** test whether a character is a hexadecimal digit **/ @@ -27,6 +25,3 @@ LC_CTYPE C_LOCALE(`THIS() is true for the characters CHAR(0), CHAR(1), CHAR(2), CHAR(3), CHAR(4), CHAR(5), CHAR(6), CHAR(7), CHAR(8), CHAR(9), CHAR(a), CHAR(b), CHAR(c), CHAR(d), CHAR(e), CHAR(f), CHAR(A), CHAR(B), CHAR(C), CHAR(D), CHAR(E), and CHAR(F)') STDC(1) */ - - -#endif |