]> git.proxmox.com Git - wasi-libc.git/blobdiff - libc-top-half/musl/arch/or1k/bits/stat.h
Update to musl 1.2.0.
[wasi-libc.git] / libc-top-half / musl / arch / or1k / bits / stat.h
index ce6a6bd0ea62d9c0c79df24ef33f34b8dfccef0d..cde3fd027b75e2a85d7d23df2e36cc2feda14db8 100644 (file)
@@ -14,8 +14,12 @@ struct stat {
        blksize_t st_blksize;
        int __st_blksize_padding;
        blkcnt_t st_blocks;
-       struct timespec st_atim;
-       struct timespec st_mtim;
-       struct timespec st_ctim;
+       struct {
+               long tv_sec;
+               long tv_nsec;
+       } __st_atim32, __st_mtim32, __st_ctim32;
        unsigned __unused[2];
+       struct timespec st_atim;
+       struct timespec st_mtim;
+       struct timespec st_ctim;
 };