mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
14 lines
299 B
Diff
14 lines
299 B
Diff
--- 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))
|
|
|