- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
diff --git a/coreutils/od.c b/coreutils/od.c
index 8de8662..ab92dac 100644
--- a/coreutils/od.c
+++ b/coreutils/od.c
@@ -12,13 +12,13 @@
  */
 
 
+#include "busybox.h"
 #if ENABLE_DESKTOP
 /* This one provides -t (busybox's own build script needs it) */
 #include "od_bloaty.c"
 #else
-
 #include <getopt.h>
-#include "busybox.h"
+
 #include "dump.h"
 
 #define isdecdigit(c) isdigit(c)