From: Paul Eggert Date: Fri, 23 Sep 2005 20:35:41 +0000 (+0000) Subject: Don't include utime.h; not needed. X-Git-Tag: v5.90~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2c4a088886d61229807a6028c0440a079a6e9014;p=thirdparty%2Fcoreutils.git Don't include utime.h; not needed. (struct utimbuf) [!defined HAVE_STRUCT_UTIMBUF]: Remove; not needed. --- diff --git a/src/system.h b/src/system.h index e18d99d86f..e2e67c49fc 100644 --- a/src/system.h +++ b/src/system.h @@ -92,20 +92,6 @@ you must include before including this file # define makedev(maj, min) mkdev (maj, min) #endif -#if HAVE_UTIME_H -# include -#endif - -/* Some systems (even some that do have ) don't declare this - structure anywhere. */ -#ifndef HAVE_STRUCT_UTIMBUF -struct utimbuf -{ - long actime; - long modtime; -}; -#endif - /* Don't use bcopy! Use memmove if source and destination may overlap, memcpy otherwise. */