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/fnmatch/fnmatch.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/fnmatch') diff --git a/src/fnmatch/fnmatch.c b/src/fnmatch/fnmatch.c index 97c17071..09559c96 100644 --- a/src/fnmatch/fnmatch.c +++ b/src/fnmatch/fnmatch.c @@ -1,8 +1,11 @@ #include -#include "../_assert.h" +#include "_assert.h" int fnmatch(const char * pattern, const char * string, int flags) { + (void)pattern; + (void)string; + (void)flags; ASSERT_NONNULL(pattern); ASSERT_NONNULL(string); /* __ASSERT_FLAGS(flags, FNM_PATHNAME | FNM_NOESCAPE | FNM_PERIOD); */ -- cgit v1.2.1