svn commit: trunk/busybox/coreutils

aldot at busybox.net aldot at busybox.net
Sat Feb 3 12:52:33 UTC 2007


Author: aldot
Date: 2007-02-03 04:52:25 -0800 (Sat, 03 Feb 2007)
New Revision: 17738

Log:
- include busybox.h before looking at an eventual #if ENABLE_DESKTOP


Modified:
   trunk/busybox/coreutils/od.c


Changeset:
Modified: trunk/busybox/coreutils/od.c
===================================================================
--- trunk/busybox/coreutils/od.c	2007-02-03 12:50:41 UTC (rev 17737)
+++ trunk/busybox/coreutils/od.c	2007-02-03 12:52:25 UTC (rev 17738)
@@ -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 <getopt.h>
-#include "busybox.h"
 #include "dump.h"
 
 #define isdecdigit(c) isdigit(c)




More information about the busybox-cvs mailing list