chiark / gitweb /
d237e3a3e880e731aff14ea7fa39244d5aca19d3
[elogind.git] / klibc / include / arch / mips64 / klibc / archstat.h
1 #ifndef _KLIBC_ARCHSTAT_H
2 #define _KLIBC_ARCHSTAT_H
3
4 #define _STATBUF_ST_NSEC
5
6 struct stat {
7         unsigned int            st_dev;
8         unsigned int            st_pad0[3]; /* Reserved for st_dev expansion */
9
10         unsigned long           st_ino;
11
12         mode_t                  st_mode;
13         nlink_t                 st_nlink;
14
15         uid_t                   st_uid;
16         gid_t                   st_gid;
17
18         unsigned int            st_rdev;
19         unsigned int            st_pad1[3]; /* Reserved for st_rdev expansion */
20
21         off_t                   st_size;
22   
23         struct timespec         st_atim;
24         struct timespec         st_mtim;
25         struct timespec         st_ctim;
26
27         unsigned int            st_blksize;
28         unsigned int            st_pad2;
29
30         unsigned long           st_blocks;
31 };
32
33 #endif