switch all existing 32-bit archs to 64-bit time_t
[musl] / arch / sh / bits / stat.h
index 22b19bb..5d7828c 100644 (file)
@@ -14,8 +14,12 @@ struct stat {
        off_t st_size;
        blksize_t st_blksize;
        blkcnt_t st_blocks;
+       struct {
+               long tv_sec;
+               long tv_nsec;
+       } __st_atim32, __st_mtim32, __st_ctim32;
+       ino_t st_ino;
        struct timespec st_atim;
        struct timespec st_mtim;
        struct timespec st_ctim;
-       ino_t st_ino;
 };