diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-13 13:48:50 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-13 13:48:50 -0400 |
commit | 489bef2ace3c3c617f5bf78ded45a5b81fe2fd46 (patch) | |
tree | f7df0cd2678ebe868356e9a00952555a28a75214 /src/wchar | |
parent | 3e282018ffb5806cafafeb5d0d6f8d67c9bb86e8 (diff) |
add src/ to -I and exorcise ../ from #include
Diffstat (limited to 'src/wchar')
-rw-r--r-- | src/wchar/fgetws.c | 2 | ||||
-rw-r--r-- | src/wchar/fwide.c | 4 | ||||
-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 |
7 files changed, 8 insertions, 8 deletions
diff --git a/src/wchar/fgetws.c b/src/wchar/fgetws.c index 40d41cec..b4d66a71 100644 --- a/src/wchar/fgetws.c +++ b/src/wchar/fgetws.c @@ -1,6 +1,6 @@ #include <wchar.h> #include "stdio.h" -#include "../_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 17da898b..ddf322b5 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 "../_assert.h" +#include "stdio/_stdio.h" +#include "_assert.h" int fwide(FILE * stream, int mode) { diff --git a/src/wchar/wcscmp.c b/src/wchar/wcscmp.c index 67ef7432..25508509 100644 --- a/src/wchar/wcscmp.c +++ b/src/wchar/wcscmp.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "../_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 1c4f5cf2..0586bf2f 100644 --- a/src/wchar/wcscspn.c +++ b/src/wchar/wcscspn.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "../_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 06edf836..f5c56c28 100644 --- a/src/wchar/wcsncmp.c +++ b/src/wchar/wcsncmp.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "../_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 28ad085d..f8939319 100644 --- a/src/wchar/wmemchr.c +++ b/src/wchar/wmemchr.c @@ -1,5 +1,5 @@ #include <wchar.h> -#include "../_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 7667e3c4..98ae7b96 100644 --- a/src/wchar/wmemmove.c +++ b/src/wchar/wmemmove.c @@ -1,6 +1,6 @@ #include <wchar.h> #include "stdlib.h" -#include "../_assert.h" +#include "_assert.h" wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n) { |