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 | 597469541c10fdb8920ed190b72763b0719e5cb5 (diff) | |
move config.h inclusion after type declarations
| -rw-r--r-- | slock.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -31,8 +31,6 @@ enum { | |||
| 31 | NUMCOLS | 31 | NUMCOLS |
| 32 | }; | 32 | }; |
| 33 | 33 | ||
| 34 | #include "config.h" | ||
| 35 | |||
| 36 | struct lock { | 34 | struct lock { |
| 37 | int screen; | 35 | int screen; |
| 38 | Window root, win; | 36 | Window root, win; |
| @@ -46,6 +44,8 @@ struct xrandr { | |||
| 46 | int errbase; | 44 | int errbase; |
| 47 | }; | 45 | }; |
| 48 | 46 | ||
| 47 | #include "config.h" | ||
| 48 | |||
| 49 | static void | 49 | static void |
| 50 | die(const char *errstr, ...) | 50 | die(const char *errstr, ...) |
| 51 | { | 51 | { |
