summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ctype/_tolower.h (renamed from src/ctype/_tolower.c)0
-rw-r--r--src/ctype/_toupper.h (renamed from src/ctype/_toupper.c)0
-rw-r--r--src/ctype/isalnum.c2
-rw-r--r--src/ctype/isalpha.c2
-rw-r--r--src/ctype/isdigit.c2
5 files changed, 3 insertions, 3 deletions
diff --git a/src/ctype/_tolower.c b/src/ctype/_tolower.h
index 7ea943df..7ea943df 100644
--- a/src/ctype/_tolower.c
+++ b/src/ctype/_tolower.h
diff --git a/src/ctype/_toupper.c b/src/ctype/_toupper.h
index 5abdb172..5abdb172 100644
--- a/src/ctype/_toupper.c
+++ b/src/ctype/_toupper.h
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c
index f0917094..30416a14 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 "_assert.h"
+#include "_safety.h"
/** test whether a character is alphanumeric **/
diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c
index b82bd544..8382629b 100644
--- a/src/ctype/isalpha.c
+++ b/src/ctype/isalpha.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is alphabetic **/
diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c
index bbd228ad..3c41d5b2 100644
--- a/src/ctype/isdigit.c
+++ b/src/ctype/isdigit.c
@@ -1,7 +1,7 @@
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is a digit **/