From: Bernhard Reutner-Fischer Date: Sat, 3 Feb 2007 12:52:25 +0000 (-0000) Subject: - include busybox.h before looking at an eventual #if ENABLE_DESKTOP X-Git-Tag: 1_5_1~213 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6a1829d90c04e9fa6f5a836d043105bd34b60ecf;p=oweals%2Fbusybox.git - include busybox.h before looking at an eventual #if ENABLE_DESKTOP --- 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 -#include "busybox.h" + #include "dump.h" #define isdecdigit(c) isdigit(c)