From 7d31ff65a0b0388f788ca6932c815ab29e5fb10f Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Sun, 20 Nov 2016 00:29:01 +0100 Subject: [PATCH] move config.h inclusion after type declarations --- slock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slock.c b/slock.c index ad539dc..d2f0886 100644 --- 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, ...) { -- 2.20.1