From a56c79ca1aa3953754d4222b78271cbd6b9fd008 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Fri, 16 Jun 1995 20:16:02 -0800 Subject: [PATCH] make consistent with time.h SCCS-vsn: sys/sys/stat.h 8.12 --- usr/src/sys/sys/stat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr/src/sys/sys/stat.h b/usr/src/sys/sys/stat.h index 186fd2a830..69dd857124 100644 --- a/usr/src/sys/sys/stat.h +++ b/usr/src/sys/sys/stat.h @@ -9,7 +9,7 @@ * * %sccs.include.redist.c% * - * @(#)stat.h 8.11 (Berkeley) %G% + * @(#)stat.h 8.12 (Berkeley) %G% */ #ifndef _SYS_STAT_H_ @@ -51,11 +51,11 @@ struct stat { struct timespec st_ctimespec; /* time of last file status change */ #else time_t st_atime; /* time of last access */ - int32_t st_atimensec; /* nsec of last access */ + long st_atimensec; /* nsec of last access */ time_t st_mtime; /* time of last data modification */ - int32_t st_mtimensec; /* nsec of last data modification */ + long st_mtimensec; /* nsec of last data modification */ time_t st_ctime; /* time of last file status change */ - int32_t st_ctimensec; /* nsec of last file status change */ + long st_ctimensec; /* nsec of last file status change */ #endif off_t st_size; /* file size, in bytes */ int64_t st_blocks; /* blocks allocated for file */ -- 2.20.1