*: make sure zebra.h is always included first
zebra.h pulls in config.h, which results in fiddling with things like
__FILE_OFFSET_BITS. It must always be included first, in order to set
flags that influence the compiler via <features.h>.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
diff --git a/pimd/pim_cmd.c b/pimd/pim_cmd.c
index 880edb9..69c04ec 100644
--- a/pimd/pim_cmd.c
+++ b/pimd/pim_cmd.c
@@ -20,10 +20,10 @@
$QuaggaId: $Format:%an, %ai, %h$ $
*/
-#include <sys/ioctl.h>
-
#include <zebra.h>
+#include <sys/ioctl.h>
+
#include "command.h"
#include "if.h"
#include "prefix.h"