diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-03 12:52:25 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-03 12:52:25 +0000 |
commit | 9ffc483071a9ecfa28322c5532a97e223dfa970f (patch) | |
tree | 7657cee874a973fba157b2c5a757966a9e1aae28 | |
parent | faf15115a3d36c864667b8b6567d12994bce4f54 (diff) | |
download | busybox-w32-9ffc483071a9ecfa28322c5532a97e223dfa970f.tar.gz busybox-w32-9ffc483071a9ecfa28322c5532a97e223dfa970f.tar.bz2 busybox-w32-9ffc483071a9ecfa28322c5532a97e223dfa970f.zip |
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
git-svn-id: svn://busybox.net/trunk/busybox@17738 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | 14 | ||
15 | #include "busybox.h" | ||
15 | #if ENABLE_DESKTOP | 16 | #if ENABLE_DESKTOP |
16 | /* This one provides -t (busybox's own build script needs it) */ | 17 | /* This one provides -t (busybox's own build script needs it) */ |
17 | #include "od_bloaty.c" | 18 | #include "od_bloaty.c" |
18 | #else | 19 | #else |
19 | |||
20 | #include <getopt.h> | 20 | #include <getopt.h> |
21 | #include "busybox.h" | 21 | |
22 | #include "dump.h" | 22 | #include "dump.h" |
23 | 23 | ||
24 | #define isdecdigit(c) isdigit(c) | 24 | #define isdecdigit(c) isdigit(c) |