- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 3 Feb 2007 12:52:25 +0000 (12:52 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sat, 3 Feb 2007 12:52:25 +0000 (12:52 -0000)
coreutils/od.c

index 8de86628140414af6484e30d5e4144c3ed973ff1..ab92dacbb1a9dedd0f86906e00f7d2a974afbc15 100644 (file)
  */
 
 
+#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)