diff options
| author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-11-20 00:29:01 +0100 |
|---|---|---|
| committer | Markus Teich <markus.teich@stusta.mhn.de> | 2016-11-20 00:29:01 +0100 |
| commit | 7d31ff65a0b0388f788ca6932c815ab29e5fb10f (patch) | |
| tree | 770545d6ca01f2b88346776c9568afddee465bdd | |
| parent | Unboolify slock.c (diff) | |
| download | slock-7d31ff65a0b0388f788ca6932c815ab29e5fb10f.tar.gz slock-7d31ff65a0b0388f788ca6932c815ab29e5fb10f.tar.bz2 slock-7d31ff65a0b0388f788ca6932c815ab29e5fb10f.tar.xz slock-7d31ff65a0b0388f788ca6932c815ab29e5fb10f.tar.zst slock-7d31ff65a0b0388f788ca6932c815ab29e5fb10f.zip | |
move config.h inclusion after type declarations
Diffstat (limited to '')
| -rw-r--r-- | slock.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,8 +31,6 @@ enum { NUMCOLS }; -#include "config.h" - struct lock { int screen; Window root, win; @@ -46,6 +44,8 @@ struct xrandr { int errbase; }; +#include "config.h" + static void die(const char *errstr, ...) { |
