diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-20 17:35:41 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-20 17:46:14 +0100 |
commit | e678bd4b4289e536e998057bf9a9cf415f21b74c (patch) | |
tree | 7be54c8f5020841d44ccc4eaa137f169d358da48 /lib/fstree/fstree_from_file.c | |
parent | 723019f727ce53b392389bdadcc1701ae47e6a14 (diff) |
Add libcompat fallback implementation for fnmatch
This has basically been copied over from Musl and slightly modifed.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstree/fstree_from_file.c')
-rw-r--r-- | lib/fstree/fstree_from_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fstree/fstree_from_file.c b/lib/fstree/fstree_from_file.c index 9a34b36..dd7ca22 100644 --- a/lib/fstree/fstree_from_file.c +++ b/lib/fstree/fstree_from_file.c @@ -8,8 +8,8 @@ #include "fstree.h" #include "fstream.h" +#include "compat.h" -#include <fnmatch.h> #include <stdlib.h> #include <string.h> #include <assert.h> |