blob: a681f940c47aed78be59c6fd16924bc2888d492d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- a/include/i3status.h
+++ b/include/i3status.h
@@ -29,6 +29,10 @@
#include <pthread.h>
#include <stdint.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))
|