From f1142c5b11ffadd18eb599c4915d755f3fe61953 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 20 Feb 2001 06:16:29 +0000 Subject: Oops. Put time.h after busybox.h, so we can check for BB_FEATURE_LS_TIMESTAMPS -Erik --- ls.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ls.c') 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) -- cgit v1.2.3