summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2023-03-11 19:07:55 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2023-03-11 19:07:55 +0100
commit66ef5f33e9987b70e2457c4a459f7ed84184604b (patch)
tree9410ac67de69a92f3388d818017fc04e87ba8c19
parentfdf5fc7305e86bee82c1d7466d0d74936c135b07 (diff)
include X11/keysym.h: improve compatibility with older systems
This matches dwm too. This makes it compile cleanly on a tested Slackware 11 system.
-rw-r--r--tabbed.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tabbed.c b/tabbed.c
index 477a041..1b61d93 100644
--- a/tabbed.c
+++ b/tabbed.c
@@ -11,6 +11,7 @@
#include <string.h>
#include <unistd.h>
#include <X11/Xatom.h>
+#include <X11/keysym.h>
#include <X11/Xlib.h>
#include <X11/Xproto.h>
#include <X11/Xutil.h>