about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authora@null <unknown>2008-12-13 16:35:34 +0000
committera@null <unknown>2008-12-13 16:35:34 +0000
commit0be9fb8797632f2792cc8bde0221560b3fb47cd4 (patch)
treef06313137d0b84bb4686fdfa3a8ffc45820de975
parent62a491e36d493bf4585b348a4c28c5ed9bd3ea4e (diff)
downloaddwm-0be9fb8797632f2792cc8bde0221560b3fb47cd4.tar.gz
added sys/signal.h inclusion for BSD compliance
-rw-r--r--dwm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index d6dc467..73ce7bf 100644
--- a/dwm.c
+++ b/dwm.c
@@ -27,6 +27,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <sys/signal.h>
 #include <sys/types.h>
 #include <sys/wait.h>
 #include <X11/cursorfont.h>
> 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238