blob: b873fc9bed3e7df5ec3d212666e8052b0c733e5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- 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))
|