summaryrefslogtreecommitdiff
path: root/src/ctype/isalnum.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2023-11-14 14:56:26 -0500
committerJakob Kaivo <jkk@ung.org>2023-11-14 14:56:26 -0500
commitc3566145e736866cdbb1aaa4a4673d151ad7653d (patch)
treeec9367327c9d2303fcc231be1835dad08dc6c33a /src/ctype/isalnum.c
parenta425f8aea7920f7e37ad1c892a10908fb869a016 (diff)
enable all <ctype.h> functions
Diffstat (limited to 'src/ctype/isalnum.c')
-rw-r--r--src/ctype/isalnum.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index 65262037..edb03ca6 100644
--- a/src/ctype/isalnum.c
+++ b/src/ctype/isalnum.c
@@ -1,7 +1,6 @@
-#if 0
-
#include <ctype.h>
#include <limits.h>
+#include <stdio.h>
#include "_assert.h"
/** test whether a character is alphanumeric **/
@@ -23,6 +22,3 @@ RETURN(0, ARGUMENT(c) is not an alphanumeric character)
LC_CTYPE
STDC(1)
*/
-
-
-#endif