From f9035ffc60de8505522c8092f7d53269dd8a4738 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 4 Mar 2020 03:05:54 -0500 Subject: remove nonstd/ctype.h --- src/wctype/_wctype.h | 1 + src/wctype/wctrans.c | 2 +- src/wctype/wctype.c | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 src/wctype/_wctype.h (limited to 'src/wctype') diff --git a/src/wctype/_wctype.h b/src/wctype/_wctype.h new file mode 100644 index 00000000..feb23dc0 --- /dev/null +++ b/src/wctype/_wctype.h @@ -0,0 +1 @@ +#include "../ctype/_ctype.h" diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c index eb51e112..fac15545 100644 --- a/src/wctype/wctrans.c +++ b/src/wctype/wctrans.c @@ -1,7 +1,7 @@ #include #include "string.h" #include "nonstd/assert.h" -#include "nonstd/ctype.h" +#include "_wctype.h" /** lookup character translation **/ wctrans_t wctrans(const char * property) diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c index 82a6ac5b..96e5dd1b 100644 --- a/src/wctype/wctype.c +++ b/src/wctype/wctype.c @@ -1,7 +1,7 @@ #include #include "string.h" #include "nonstd/assert.h" -#include "nonstd/ctype.h" +#include "_wctype.h" /** lookup character class **/ wctype_t wctype(const char * property) -- cgit v1.2.1