chiark / gitweb /
0ff68785e50a990496941e6578fc9874c492bc0e
[elogind.git] / klibc / include / arch / sparc / 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 long st_dev;
8
9         unsigned long long st_ino;
10
11         unsigned int    st_mode;
12         unsigned int    st_nlink;
13
14         unsigned int    st_uid;
15         unsigned int    st_gid;
16
17         unsigned long long st_rdev;
18
19         unsigned char   __pad3[8];
20
21         long long       st_size;
22         unsigned int    st_blksize;
23
24         unsigned char   __pad4[8];
25         unsigned int    st_blocks;
26
27         struct timespec st_atim;
28         struct timespec st_mtim;
29         struct timespec st_ctim;
30
31         unsigned int    __unused4;
32         unsigned int    __unused5;
33 };
34
35 #endif