diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-03 12:52:25 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-03 12:52:25 +0000 |
commit | 6a1829d90c04e9fa6f5a836d043105bd34b60ecf (patch) | |
tree | 7657cee874a973fba157b2c5a757966a9e1aae28 /coreutils | |
parent | a5c5ae03eb407e94a15f2455baaee6e2415a8ec5 (diff) | |
download | busybox-6a1829d90c04e9fa6f5a836d043105bd34b60ecf.tar.gz |
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/od.c | 4 |
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) |