aboutsummaryrefslogtreecommitdiff
path: root/io/utime.h
diff options
context:
space:
mode:
Diffstat (limited to 'io/utime.h')
-rw-r--r--io/utime.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/io/utime.h b/io/utime.h
index df2299e..c7612d0 100644
--- a/io/utime.h
+++ b/io/utime.h
@@ -35,8 +35,13 @@ __BEGIN_DECLS
/* Structure describing file times. */
struct utimbuf
{
+#ifdef __USE_TIME_BITS64
+ __time64_t actime; /* Access time. */
+ __time64_t modtime; /* Modification time. */
+#else
__time_t actime; /* Access time. */
__time_t modtime; /* Modification time. */
+#endif
};
/* Set the access and modification times of FILE to those given in