aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorarg@suckless.org <unknown>2007-09-27 09:14:32 +0200
committerarg@suckless.org <unknown>2007-09-27 09:14:32 +0200
commit2fc8a13588eee7b39bcda21838c88ed2f7be42c9 (patch)
tree2b8e268b0d91e1731fece68fd32424a9f452e4bf /dwm.c
parent63725004f57de0ab6b6c49f0a578003834537366 (diff)
downloaddwm-2fc8a13588eee7b39bcda21838c88ed2f7be42c9.tar.gz
fixed inclusion order
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index ca57f8e..277f561 100644
--- a/dwm.c
+++ b/dwm.c
@@ -27,14 +27,15 @@
*/
#include <errno.h>
#include <locale.h>
-#include <regex.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/select.h>
+#include <sys/types.h>
#include <sys/wait.h>
+#include <regex.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/Xatom.h>
remember that computers suck.