summaryrefslogtreecommitdiff
path: root/src/ctype/isalnum.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-31 15:54:38 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-31 15:54:38 -0500
commit57fd57ab4005e37bfab4bf7c637eecc1eb5445b5 (patch)
treea5cc5b9ad040955a0a7247091cbc542f297229bb /src/ctype/isalnum.c
parent1dcdfdc0141e94b57b80526ca917b1228fe53f53 (diff)
clean up UB detection
Diffstat (limited to 'src/ctype/isalnum.c')
-rw-r--r--src/ctype/isalnum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index b8ffc414..81a1a0fa 100644
--- a/src/ctype/isalnum.c
+++ b/src/ctype/isalnum.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_safety.h"
+#include "_ctype.h"
/** test whether a character is alphanumeric **/