summaryrefslogtreecommitdiff
path: root/src/fnmatch/fnmatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fnmatch/fnmatch.c')
-rw-r--r--src/fnmatch/fnmatch.c5
1 files changed, 4 insertions, 1 deletions
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 <fnmatch.h>
-#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); */