diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 12:00:02 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-22 12:00:02 +0100 |
commit | 825b7c3eb17fd0a79005110bf28e92c4ed2f1a90 (patch) | |
tree | e3022bcaa8905768fcc82ed881d9d7a1a629ec00 /layout.c | |
parent | ba96131af0e3a46b8dfbe7c938954f833339e77a (diff) | |
download | dwm-825b7c3eb17fd0a79005110bf28e92c4ed2f1a90.tar.gz |
fixed some issues due to the Arg->const char * transition
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/layout.c b/layout.c index 8b4c940..21ee99c 100644 --- a/layout.c +++ b/layout.c @@ -2,6 +2,7 @@ * See LICENSE file for license details. */ #include "dwm.h" +#include <stdlib.h> unsigned int blw = 0; Layout *lt = NULL; |