diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-23 20:35:41 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-09-23 20:35:41 +0000 |
commit | 2c4a088886d61229807a6028c0440a079a6e9014 (patch) | |
tree | 36b7e139ede456f540ee0f33aa85443c2be702ed /src | |
parent | cf37a8b41a2d40b4f3bc466dbbabee3b87527437 (diff) | |
download | coreutils-2c4a088886d61229807a6028c0440a079a6e9014.tar.xz |
Don't include utime.h; not needed.
(struct utimbuf) [!defined HAVE_STRUCT_UTIMBUF]: Remove; not needed.
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/system.h b/src/system.h index e18d99d86..e2e67c49f 100644 --- a/src/system.h +++ b/src/system.h @@ -92,20 +92,6 @@ you must include <sys/types.h> before including this file # define makedev(maj, min) mkdev (maj, min) #endif -#if HAVE_UTIME_H -# include <utime.h> -#endif - -/* Some systems (even some that do have <utime.h>) 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. */ |