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/wctype | |
| parent | c37709cb45a4dac2c9c8ffb0fdae2361e2ead7de (diff) | |
remove all generated nonstd/ headers
Diffstat (limited to 'src/wctype')
| -rw-r--r-- | src/wctype/iswalnum.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswalpha.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswblank.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswcntrl.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswctype.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswdigit.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswgraph.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswlower.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswprint.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswpunct.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswspace.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswupper.c | 2 | ||||
| -rw-r--r-- | src/wctype/iswxdigit.c | 2 | ||||
| -rw-r--r-- | src/wctype/towctrans.c | 2 | ||||
| -rw-r--r-- | src/wctype/towlower.c | 2 | ||||
| -rw-r--r-- | src/wctype/towupper.c | 2 | ||||
| -rw-r--r-- | src/wctype/wctrans.c | 2 | ||||
| -rw-r--r-- | src/wctype/wctype.c | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/src/wctype/iswalnum.c b/src/wctype/iswalnum.c index dafc242e..42f0df4a 100644 --- a/src/wctype/iswalnum.c +++ b/src/wctype/iswalnum.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "limits.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "wchar.h" /** test whether a wide character is alphanumeric **/ diff --git a/src/wctype/iswalpha.c b/src/wctype/iswalpha.c index 6fcc275f..0d3e6d57 100644 --- a/src/wctype/iswalpha.c +++ b/src/wctype/iswalpha.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is alphabetic **/ int iswalpha(wint_t wc) diff --git a/src/wctype/iswblank.c b/src/wctype/iswblank.c index b6a44d3c..753f9b41 100644 --- a/src/wctype/iswblank.c +++ b/src/wctype/iswblank.c @@ -1,5 +1,5 @@ #include <wctype.h> -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is blank **/ int iswblank(wint_t wc) diff --git a/src/wctype/iswcntrl.c b/src/wctype/iswcntrl.c index 7859148a..acec5785 100644 --- a/src/wctype/iswcntrl.c +++ b/src/wctype/iswcntrl.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is a control character */ int iswcntrl(wint_t wc) diff --git a/src/wctype/iswctype.c b/src/wctype/iswctype.c index fd24051a..db05e919 100644 --- a/src/wctype/iswctype.c +++ b/src/wctype/iswctype.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is part of a character class **/ int iswctype(wint_t wc, wctype_t desc) diff --git a/src/wctype/iswdigit.c b/src/wctype/iswdigit.c index 1ccdf84d..7dc13755 100644 --- a/src/wctype/iswdigit.c +++ b/src/wctype/iswdigit.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is a digit **/ int iswdigit(wint_t wc) diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c index f20ad02c..dba00813 100644 --- a/src/wctype/iswgraph.c +++ b/src/wctype/iswgraph.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is graphic **/ int iswgraph(wint_t wc) diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c index 739c36e8..5bd19e2e 100644 --- a/src/wctype/iswlower.c +++ b/src/wctype/iswlower.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a character is a lowercase letter **/ int iswlower(wint_t wc) diff --git a/src/wctype/iswprint.c b/src/wctype/iswprint.c index 11bf9033..51730c5e 100644 --- a/src/wctype/iswprint.c +++ b/src/wctype/iswprint.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is printable **/ int iswprint(wint_t wc) diff --git a/src/wctype/iswpunct.c b/src/wctype/iswpunct.c index 5ffdbe85..5896f8bb 100644 --- a/src/wctype/iswpunct.c +++ b/src/wctype/iswpunct.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is punctuation **/ int iswpunct(wint_t wc) diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c index 60bf723a..feb22b5e 100644 --- a/src/wctype/iswspace.c +++ b/src/wctype/iswspace.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is white-space **/ int iswspace(wint_t wc) diff --git a/src/wctype/iswupper.c b/src/wctype/iswupper.c index 27fe2359..b56e4214 100644 --- a/src/wctype/iswupper.c +++ b/src/wctype/iswupper.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is an uppercase letter **/ int iswupper(wint_t wc) diff --git a/src/wctype/iswxdigit.c b/src/wctype/iswxdigit.c index b544b285..2b255a40 100644 --- a/src/wctype/iswxdigit.c +++ b/src/wctype/iswxdigit.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** test whether a wide character is a hexadecimal digit **/ int iswxdigit(wint_t wc) diff --git a/src/wctype/towctrans.c b/src/wctype/towctrans.c index 9ea0c8a6..0b083cad 100644 --- a/src/wctype/towctrans.c +++ b/src/wctype/towctrans.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" wint_t towctrans(wint_t wc, wctrans_t desc) { diff --git a/src/wctype/towlower.c b/src/wctype/towlower.c index 8e5254d8..fe0c632e 100644 --- a/src/wctype/towlower.c +++ b/src/wctype/towlower.c @@ -1,7 +1,7 @@ #include <wctype.h> #include "wchar.h" #include "stdlib.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** convert a wide uppercase letter to lowercase **/ wint_t towlower(wint_t wc) diff --git a/src/wctype/towupper.c b/src/wctype/towupper.c index 1310e109..0f1a40be 100644 --- a/src/wctype/towupper.c +++ b/src/wctype/towupper.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "wchar.h" -#include "nonstd/assert.h" +#include "../_assert.h" /** convert a wide lowercase letter to uppercase **/ wint_t towupper(wint_t wc) diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c index fac15545..4380467e 100644 --- a/src/wctype/wctrans.c +++ b/src/wctype/wctrans.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "string.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_wctype.h" /** lookup character translation **/ diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c index 96e5dd1b..c2ec3460 100644 --- a/src/wctype/wctype.c +++ b/src/wctype/wctype.c @@ -1,6 +1,6 @@ #include <wctype.h> #include "string.h" -#include "nonstd/assert.h" +#include "../_assert.h" #include "_wctype.h" /** lookup character class **/ |
