From 3f5a42b3dd05e56794e5a1394c6e008c15b3f58e Mon Sep 17 00:00:00 2001 From: Kenneth Myhra Date: Thu, 19 Aug 2021 21:59:44 +0200 Subject: [PATCH] LibC: Add FNM_NOMATCH to fnmatch.h Adding FNM_NOMATCH fixes the currently broken curl port. --- Userland/Libraries/LibC/fnmatch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibC/fnmatch.h b/Userland/Libraries/LibC/fnmatch.h index 7b1df98b92..ca46fa1556 100644 --- a/Userland/Libraries/LibC/fnmatch.h +++ b/Userland/Libraries/LibC/fnmatch.h @@ -8,6 +8,7 @@ #include +#define FNM_NOMATCH 1 #define FNM_PATHNAME 1 #define FNM_NOESCAPE 2 #define FNM_PERIOD 4