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 | |
| parent | a5c5ae03eb407e94a15f2455baaee6e2415a8ec5 (diff) | |
| download | busybox-w32-6a1829d90c04e9fa6f5a836d043105bd34b60ecf.tar.gz busybox-w32-6a1829d90c04e9fa6f5a836d043105bd34b60ecf.tar.bz2 busybox-w32-6a1829d90c04e9fa6f5a836d043105bd34b60ecf.zip | |
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
| -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) |
