dwm.c
branchstil
changeset 1532 4a1df4ff7ca3
parent 1531 606ac98e35df
child 1534 ff21639cb978
--- a/dwm.c	Wed Feb 02 21:20:03 2011 +0300
+++ b/dwm.c	Wed Feb 02 22:24:33 2011 +0300
@@ -269,6 +269,7 @@
 static Window root;
 
 /* configuration, allows nested code to access above variables */
+#include "push.h"
 #include "config.h"
 
 struct Monitor {
@@ -296,6 +297,8 @@
 	Bool showbars[LENGTH(tags) + 1];
 };
 
+#include "push.c"
+
 /* compile-time check if all tags fit into an unsigned int bit array. */
 struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };