diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 14:56:26 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 14:56:26 -0500 |
commit | c3566145e736866cdbb1aaa4a4673d151ad7653d (patch) | |
tree | ec9367327c9d2303fcc231be1835dad08dc6c33a /src/ctype/isdigit.c | |
parent | a425f8aea7920f7e37ad1c892a10908fb869a016 (diff) |
enable all <ctype.h> functions
Diffstat (limited to 'src/ctype/isdigit.c')
-rw-r--r-- | src/ctype/isdigit.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index 3b42fc71..cc8db83c 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -1,7 +1,6 @@ -#if 0 - #include <ctype.h> #include <limits.h> +#include <stdio.h> #include "_assert.h" /** test whether a character is a digit **/ @@ -25,6 +24,3 @@ LC_CTYPE C_LOCALE(`THIS() is true for characters CHAR(0), CHAR(1), CHAR(2), CHAR(3), CHAR(4), CHAR(5), CHAR(6), CHAR(7), CHAR(8), and CHAR(9)') STDC(1) */ - - -#endif |