slock
simple X display locker utility
git clone https://9o.is/git/slock.git
commit 9f13959238d0fc35150a555fe030392e4e5d85c5 parent 937ba196ef81efdd02bb4ce99c19cd4b395e1cf7 Author: Markus Teich <markus.teich@stusta.mhn.de> Date: Sun, 20 Nov 2016 00:29:01 +0100 move config.h inclusion after type declarations Diffstat:
| M | slock.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/slock.c b/slock.c @@ -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, ...) {