From ce92c1cf6a571ac3a7e46766ea69df97b250709b Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sun, 10 Jun 2007 22:18:46 +0000 Subject: [PATCH] Include config.h early so we have it for TIME_WITH_SYS_TIME --- utimes.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utimes.c b/utimes.c index c894336c2..dc0b8451c 100644 --- a/utimes.c +++ b/utimes.c @@ -14,6 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include + #include #include #include @@ -21,15 +23,14 @@ # include #endif -#include -#include - #ifdef HAVE_UTIME_H # include #else # include #endif +#include + #ifndef lint __unused static const char rcsid[] = "$Sudo$"; #endif /* lint */ -- 2.50.1