projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a5c5ae0
)
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP
author
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Sat, 3 Feb 2007 12:52:25 +0000
(12:52 -0000)
committer
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Sat, 3 Feb 2007 12:52:25 +0000
(12:52 -0000)
coreutils/od.c
patch
|
blob
|
history
diff --git
a/coreutils/od.c
b/coreutils/od.c
index 8de86628140414af6484e30d5e4144c3ed973ff1..ab92dacbb1a9dedd0f86906e00f7d2a974afbc15 100644
(file)
--- 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)