diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-12 11:02:56 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-12 11:02:56 -0400 |
| commit | ecd4d00f1bdf184163cc44ed8261d9f11ca9aae0 (patch) | |
| tree | 7148339b74cfd5f453be629843e4647b8ed3e7a2 /src/ctype | |
| parent | c37709cb45a4dac2c9c8ffb0fdae2361e2ead7de (diff) | |
remove all generated nonstd/ headers
Diffstat (limited to 'src/ctype')
| -rw-r--r-- | src/ctype/_ctype.h | 2 | ||||
| -rw-r--r-- | src/ctype/isalnum.c | 2 | ||||
| -rw-r--r-- | src/ctype/isalpha.c | 2 | ||||
| -rw-r--r-- | src/ctype/isblank.c | 2 | ||||
| -rw-r--r-- | src/ctype/iscntrl.c | 2 | ||||
| -rw-r--r-- | src/ctype/isdigit.c | 2 | ||||
| -rw-r--r-- | src/ctype/isgraph.c | 2 | ||||
| -rw-r--r-- | src/ctype/islower.c | 2 | ||||
| -rw-r--r-- | src/ctype/isprint.c | 2 | ||||
| -rw-r--r-- | src/ctype/ispunct.c | 2 | ||||
| -rw-r--r-- | src/ctype/isspace.c | 2 | ||||
| -rw-r--r-- | src/ctype/isupper.c | 2 | ||||
| -rw-r--r-- | src/ctype/isxdigit.c | 2 | ||||
| -rw-r--r-- | src/ctype/tolower.c | 2 | ||||
| -rw-r--r-- | src/ctype/toupper.c | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/src/ctype/_ctype.h b/src/ctype/_ctype.h index fa584da6..f64553c1 100644 --- a/src/ctype/_ctype.h +++ b/src/ctype/_ctype.h @@ -1,7 +1,7 @@ #ifndef ___CTYPE_H__ #define ___CTYPE_H__ -#include "nonstd/internal.h" +#include "../_nonstd.h" typedef enum { CT_ALPHA = (1 << 0), diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c index 6b0d7388..67ade0a2 100644 --- a/src/ctype/isalnum.c +++ b/src/ctype/isalnum.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a character is alphanumeric **/ diff --git a/src/ctype/isalpha.c b/src/ctype/isalpha.c index c399dc1c..b87817c8 100644 --- a/src/ctype/isalpha.c +++ b/src/ctype/isalpha.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a character is alphabetic **/ diff --git a/src/ctype/isblank.c b/src/ctype/isblank.c index aed70f98..d22d2315 100644 --- a/src/ctype/isblank.c +++ b/src/ctype/isblank.c @@ -2,7 +2,7 @@ #include "limits.h" #include "locale.h" #include "_ctype.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a character is blank **/ diff --git a/src/ctype/iscntrl.c b/src/ctype/iscntrl.c index 679d3d24..ef28ff20 100644 --- a/src/ctype/iscntrl.c +++ b/src/ctype/iscntrl.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is a control character */ diff --git a/src/ctype/isdigit.c b/src/ctype/isdigit.c index f4f80c1b..0f91a7d3 100644 --- a/src/ctype/isdigit.c +++ b/src/ctype/isdigit.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a character is a digit **/ diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c index d041e840..a6490d8f 100644 --- a/src/ctype/isgraph.c +++ b/src/ctype/isgraph.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is graphic **/ diff --git a/src/ctype/islower.c b/src/ctype/islower.c index b2e0b678..35c8236d 100644 --- a/src/ctype/islower.c +++ b/src/ctype/islower.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is a lowercase letter **/ diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c index 4a426fe1..c3deaebd 100644 --- a/src/ctype/isprint.c +++ b/src/ctype/isprint.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is printable **/ diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c index e55dac2e..12d0cf16 100644 --- a/src/ctype/ispunct.c +++ b/src/ctype/ispunct.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is punctuation **/ diff --git a/src/ctype/isspace.c b/src/ctype/isspace.c index 16cb0c24..fb913c49 100644 --- a/src/ctype/isspace.c +++ b/src/ctype/isspace.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is white-space **/ diff --git a/src/ctype/isupper.c b/src/ctype/isupper.c index d0d58eaa..ff07ff59 100644 --- a/src/ctype/isupper.c +++ b/src/ctype/isupper.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is an uppercase letter **/ diff --git a/src/ctype/isxdigit.c b/src/ctype/isxdigit.c index 543774a3..9f9e0b91 100644 --- a/src/ctype/isxdigit.c +++ b/src/ctype/isxdigit.c @@ -1,6 +1,6 @@ #include <ctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** test whether a character is a hexadecimal digit **/ diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c index 0994071b..4512ef36 100644 --- a/src/ctype/tolower.c +++ b/src/ctype/tolower.c @@ -1,7 +1,7 @@ #include <ctype.h> #include "stdio.h" #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** convert an uppercase letter to lowercase **/ diff --git a/src/ctype/toupper.c b/src/ctype/toupper.c index e40e4a73..897d059e 100644 --- a/src/ctype/toupper.c +++ b/src/ctype/toupper.c @@ -1,7 +1,7 @@ #include <ctype.h> #include "stdio.h" #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_ctype.h" /** convert a lowercase letter to uppercase **/ |
