From a76a81f80b4dc95881b8d20444ecfa283d29b02c Mon Sep 17 00:00:00 2001 From: Marcus Crestani Date: Wed, 11 Jun 2014 20:53:22 +0200 Subject: [PATCH 1/1] Include sys/sysctl.h after i3.h to prevent redefinition warnings caused by queue.h on OS X. --- src/log.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/log.c b/src/log.c index ec44f3ae..10149081 100644 --- a/src/log.c +++ b/src/log.c @@ -21,10 +21,6 @@ #include #include #include -#if defined(__APPLE__) -#include -#include -#endif #include "util.h" #include "log.h" @@ -32,6 +28,10 @@ #include "libi3.h" #include "shmlog.h" +#if defined(__APPLE__) +#include +#endif + static bool debug_logging = false; static bool verbose = false; static FILE *errorfile; -- 2.39.5