mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-09 22:41:09 +02:00
14 lines
303 B
Diff
14 lines
303 B
Diff
--- a/include/i3status.h.orig
|
|
+++ b/include/i3status.h
|
|
@@ -11,6 +11,10 @@
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
+#ifndef GLOB_TILDE
|
|
+#define GLOB_TILDE 0
|
|
+#endif
|
|
+
|
|
#define BEGINS_WITH(haystack, needle) (strncmp(haystack, needle, strlen(needle)) == 0)
|
|
#define max(a, b) ((a) > (b) ? (a) : (b))
|
|
|