summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2012-11-26 16:27:22 +0100
committerChristian Neukirchen <chneukirchen@gmail.com>2012-11-26 16:27:22 +0100
commitb4315a3fdad8dc66e649a4df89617160943ae144 (patch)
treebc8346ebab7bbe95d16f2ee8785aa78bfc39ba3b
parent9088b86b140767416c5ddfd12cf269cb1421a927 (diff)
downloadcwm-b4315a3fdad8dc66e649a4df89617160943ae144.tar.gz
cwm-b4315a3fdad8dc66e649a4df89617160943ae144.tar.xz
cwm-b4315a3fdad8dc66e649a4df89617160943ae144.zip
Use vendored queue.h everywhere
-rw-r--r--calmwm.c2
-rw-r--r--client.c2
-rw-r--r--conf.c2
-rw-r--r--font.c2
-rw-r--r--group.c2
-rw-r--r--kbfunc.c2
-rw-r--r--menu.c2
-rw-r--r--mousefunc.c2
-rw-r--r--screen.c2
-rw-r--r--search.c2
-rw-r--r--util.c2
-rw-r--r--xevents.c2
-rw-r--r--xmalloc.c2
-rw-r--r--xutil.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/calmwm.c b/calmwm.c
index f95e811..08d0b53 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 #include <sys/wait.h>
 
 #include <err.h>
diff --git a/client.c b/client.c
index 57f2218..455f5ef 100644
--- a/client.c
+++ b/client.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <assert.h>
 #include <err.h>
diff --git a/conf.c b/conf.c
index b4967e4..857ccb5 100644
--- a/conf.c
+++ b/conf.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 #include <sys/stat.h>
 
 #include <err.h>
diff --git a/font.c b/font.c
index 3793e55..58dba5f 100644
--- a/font.c
+++ b/font.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/group.c b/group.c
index fd507be..834fac4 100644
--- a/group.c
+++ b/group.c
@@ -20,7 +20,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <assert.h>
 #include <err.h>
diff --git a/kbfunc.c b/kbfunc.c
index e8ab152..c110a9f 100644
--- a/kbfunc.c
+++ b/kbfunc.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <dirent.h>
 #include <err.h>
diff --git a/menu.c b/menu.c
index e2b6e0e..dcf801d 100644
--- a/menu.c
+++ b/menu.c
@@ -20,7 +20,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <ctype.h>
 #include <err.h>
diff --git a/mousefunc.c b/mousefunc.c
index d61adca..37dd7a1 100644
--- a/mousefunc.c
+++ b/mousefunc.c
@@ -20,7 +20,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/screen.c b/screen.c
index b52856f..c723378 100644
--- a/screen.c
+++ b/screen.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/search.c b/search.c
index d016d12..815f6bb 100644
--- a/search.c
+++ b/search.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <assert.h>
 #include <err.h>
diff --git a/util.c b/util.c
index f69f880..c175165 100644
--- a/util.c
+++ b/util.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/xevents.c b/xevents.c
index e167189..acfb2bc 100644
--- a/xevents.c
+++ b/xevents.c
@@ -25,7 +25,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/xmalloc.c b/xmalloc.c
index d0697fa..a93393f 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>
diff --git a/xutil.c b/xutil.c
index 9c80dfe..fa3fc7f 100644
--- a/xutil.c
+++ b/xutil.c
@@ -19,7 +19,7 @@
  */
 
 #include <sys/param.h>
-#include <sys/queue.h>
+#include "queue.h"
 
 #include <err.h>
 #include <errno.h>