summaryrefslogtreecommitdiff
path: root/src/wallpaper.c
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-01-29 21:01:03 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-01-29 21:01:03 +0100
commitfe8ce5419da5f08e0923e759753b75edc53906b3 (patch)
treec6cf2daa40e5731b9d752ddc17585724886fd7eb /src/wallpaper.c
parentc4a98974bece64c5ae6e224151e92e807d5ac271 (diff)
Include system headers before local ones to fix type conflict on OpenBSD
Diffstat (limited to 'src/wallpaper.c')
-rw-r--r--src/wallpaper.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wallpaper.c b/src/wallpaper.c
index c9a3a05..34694ae 100644
--- a/src/wallpaper.c
+++ b/src/wallpaper.c
@@ -24,12 +24,14 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
+#include <limits.h>
+#include <sys/stat.h>
+
#include "feh.h"
#include "filelist.h"
#include "options.h"
#include "wallpaper.h"
-#include <limits.h>
-#include <sys/stat.h>
+
Window ipc_win = None;
Window my_ipc_win = None;
Atom ipc_atom = None;