From: Eric Andersen Date: Tue, 20 Feb 2001 06:16:29 +0000 (-0000) Subject: Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPS X-Git-Tag: 0_50~194 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f1142c5b11ffadd18eb599c4915d755f3fe61953;p=oweals%2Fbusybox.git Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPS -Erik --- diff --git a/coreutils/ls.c b/coreutils/ls.c index a619bb8b2..44bb8cddb 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -57,17 +57,17 @@ enum { #include #include #include -#ifdef BB_FEATURE_LS_TIMESTAMPS -#include -#endif #include #include - #include #include #include #include "busybox.h" +#ifdef BB_FEATURE_LS_TIMESTAMPS +#include +#endif + #ifndef MAJOR #define MAJOR(dev) (((dev)>>8)&0xff) #define MINOR(dev) ((dev)&0xff) diff --git a/ls.c b/ls.c index a619bb8b2..44bb8cddb 100644 --- a/ls.c +++ b/ls.c @@ -57,17 +57,17 @@ enum { #include #include #include -#ifdef BB_FEATURE_LS_TIMESTAMPS -#include -#endif #include #include - #include #include #include #include "busybox.h" +#ifdef BB_FEATURE_LS_TIMESTAMPS +#include +#endif + #ifndef MAJOR #define MAJOR(dev) (((dev)>>8)&0xff) #define MINOR(dev) ((dev)&0xff)