From 6efac29fb097c5b7ff17debe502e24e7a66b3fbc Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 11 Sep 2004 16:24:28 +0000 Subject: [PATCH] Don't use HAVE_UTIME_H before including config.h. --- utimes.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utimes.c b/utimes.c index 3942936e9..a50609479 100644 --- a/utimes.c +++ b/utimes.c @@ -18,14 +18,15 @@ #include #include #include + +#include "config.h" + #ifdef HAVE_UTIME_H # include #else # include #endif -#include "config.h" - #ifndef lint static const char rcsid[] = "$Sudo$"; #endif /* lint */ -- 2.40.0