switch all existing 32-bit archs to 64-bit time_t
[oweals/musl.git] / arch / sh / bits / stat.h
index 22b19bbfecf52c0b0158a2f84273c9bb7efd3d64..5d7828cf792baa9109d9868e2939ea9a5508f25c 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;
 };