Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-02-03 15:52:25 +0300
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-02-03 15:52:25 +0300
commit6a1829d90c04e9fa6f5a836d043105bd34b60ecf (patch)
tree7657cee874a973fba157b2c5a757966a9e1aae28 /coreutils/od.c
parenta5c5ae03eb407e94a15f2455baaee6e2415a8ec5 (diff)
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
Diffstat (limited to 'coreutils/od.c')
-rw-r--r--coreutils/od.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/od.c b/coreutils/od.c
index 8de866281..ab92dacbb 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)