From 965c0bf39db97e78a3b00a75e76bff77aafd2cc9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 6 Oct 1995 02:53:42 +0000 Subject: [PATCH] [!HAVE_UTIME_H]: Don't declare struct utimbuf here. [!HAVE_STRUCT_UTIMBUF]: Declare struct utimbuf here instead. --- src/system.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/system.h b/src/system.h index cdd8f3e..23bb92e 100644 --- a/src/system.h +++ b/src/system.h @@ -141,7 +141,11 @@ off_t lseek (); #ifdef HAVE_UTIME_H #include -#else +#endif + +/* Some systems (even some that do have ) don't declare this + structure anywhere. */ +#ifndef HAVE_STRUCT_UTIMBUF struct utimbuf { long actime; -- 2.7.4