From 489bef2ace3c3c617f5bf78ded45a5b81fe2fd46 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 13 Aug 2020 13:48:50 -0400 Subject: add src/ to -I and exorcise ../ from #include --- src/wchar/fgetws.c | 2 +- src/wchar/fwide.c | 4 ++-- src/wchar/wcscmp.c | 2 +- src/wchar/wcscspn.c | 2 +- src/wchar/wcsncmp.c | 2 +- src/wchar/wmemchr.c | 2 +- src/wchar/wmemmove.c | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/wchar') 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 #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 #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 -#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 -#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 -#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 -#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 #include "stdlib.h" -#include "../_assert.h" +#include "_assert.h" wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n) { -- cgit v1.2.1