chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / include / arch / x86_64 / 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 long   st_dev;
8         unsigned long   st_ino;
9         unsigned long   st_nlink;
10
11         unsigned int    st_mode;
12         unsigned int    st_uid;
13         unsigned int    st_gid;
14         unsigned int    __pad0;
15         unsigned long   st_rdev;
16         long            st_size;
17         long            st_blksize;
18         long            st_blocks;      /* Number 512-byte blocks allocated. */
19
20         struct timespec st_atim;
21         struct timespec st_mtim;
22         struct timespec st_ctim;
23         long            __unused[3];
24 };
25
26 #endif