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/wchar | |
parent | c37709cb45a4dac2c9c8ffb0fdae2361e2ead7de (diff) |
remove all generated nonstd/ headers
Diffstat (limited to 'src/wchar')
-rw-r--r-- | src/wchar/fgetwc.c | 1 | ||||
-rw-r--r-- | src/wchar/fgetws.c | 2 | ||||
-rw-r--r-- | src/wchar/fwide.c | 2 | ||||
-rw-r--r-- | src/wchar/wcscmp.c | 2 | ||||
-rw-r--r-- | src/wchar/wcscspn.c | 2 | ||||
-rw-r--r-- | src/wchar/wcsncmp.c | 2 | ||||
-rw-r--r-- | src/wchar/wmemchr.c | 2 | ||||
-rw-r--r-- | src/wchar/wmemmove.c | 2 |
8 files changed, 7 insertions, 8 deletions
diff --git a/src/wchar/fgetwc.c b/src/wchar/fgetwc.c index e5bedd04..8d725b6e 100644 --- a/src/wchar/fgetwc.c +++ b/src/wchar/fgetwc.c @@ -5,7 +5,6 @@ #if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 199506L #include "../unistd/read.c" -#include "../stdio/getc_unlocked.c" #endif wint_t fgetwc(FILE * stream) diff --git a/src/wchar/fgetws.c b/src/wchar/fgetws.c index 5262a79d..40d41cec 100644 --- a/src/wchar/fgetws.c +++ b/src/wchar/fgetws.c @@ -1,6 +1,6 @@ #include <wchar.h> #include "stdio.h" -#include "nonstd/assert.h" +#include "../_assert.h" wchar_t * fgetws(wchar_t * restrict s, int n, FILE * restrict stream) { diff --git a/src/wchar/fwide.c b/src/wchar/fwide.c index 13c4d5f0..17da898b 100644 --- a/src/wchar/fwide.c +++ b/src/wchar/fwide.c @@ -1,7 +1,7 @@ #include <wchar.h> #include "stdio.h" #include "../stdio/_stdio.h" -#include "nonstd/assert.h" +#include "../_assert.h" int fwide(FILE * stream, int mode) { diff --git a/src/wchar/wcscmp.c b/src/wchar/wcscmp.c index d07d9a10..67ef7432 100644 --- a/src/wchar/wcscmp.c +++ b/src/wchar/wcscmp.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "nonstd/assert.h" +#include "../_assert.h" int wcscmp(const wchar_t * s1, const wchar_t * s2) { diff --git a/src/wchar/wcscspn.c b/src/wchar/wcscspn.c index 0c300a4a..1c4f5cf2 100644 --- a/src/wchar/wcscspn.c +++ b/src/wchar/wcscspn.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "nonstd/assert.h" +#include "../_assert.h" size_t wcscspn(const wchar_t * s1, const wchar_t * s2) { diff --git a/src/wchar/wcsncmp.c b/src/wchar/wcsncmp.c index d41899f4..06edf836 100644 --- a/src/wchar/wcsncmp.c +++ b/src/wchar/wcsncmp.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "nonstd/assert.h" +#include "../_assert.h" int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n) { diff --git a/src/wchar/wmemchr.c b/src/wchar/wmemchr.c index b6d9ac7b..28ad085d 100644 --- a/src/wchar/wmemchr.c +++ b/src/wchar/wmemchr.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "nonstd/assert.h" +#include "../_assert.h" wchar_t * wmemchr(const wchar_t * s, wchar_t c, size_t n) { diff --git a/src/wchar/wmemmove.c b/src/wchar/wmemmove.c index 75b58f87..7667e3c4 100644 --- a/src/wchar/wmemmove.c +++ b/src/wchar/wmemmove.c @@ -1,6 +1,6 @@ #include <wchar.h> #include "stdlib.h" -#include "nonstd/assert.h" +#include "../_assert.h" wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n) { |