1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 20:45:06 +00:00
serenity/Ports/nano/patches/fnmatch.patch
2021-08-14 12:40:49 +02:00

14 lines
373 B
Diff

diff -Naur nano-5.8/lib/fnmatch_loop.c nano-5.8.serenity/lib/fnmatch_loop.c
--- nano-5.8/lib/fnmatch_loop.c 2020-06-26 21:57:10.000000000 +0200
+++ nano-5.8.serenity/lib/fnmatch_loop.c 2021-05-08 05:06:59.944736766 +0200
@@ -19,6 +19,10 @@
# include <stdint.h>
#endif
+#ifdef __serenity__
+# define FNM_EXTMATCH 9000
+#endif
+
struct STRUCT
{
const CHAR *pattern;