summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2005-09-23 20:35:41 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2005-09-23 20:35:41 +0000
commit2c4a088886d61229807a6028c0440a079a6e9014 (patch)
tree36b7e139ede456f540ee0f33aa85443c2be702ed /src
parentcf37a8b41a2d40b4f3bc466dbbabee3b87527437 (diff)
downloadcoreutils-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.h14
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. */