summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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. */