chiark / gitweb /
23302d737daa4c2b60477101ef1afc06f432d75c
[elogind.git] / klibc / include / arch / alpha / 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_rdev;
10         long            st_size;
11         unsigned long   st_blocks;
12
13         unsigned int    st_mode;
14         unsigned int    st_uid;
15         unsigned int    st_gid;
16         unsigned int    st_blksize;
17         unsigned int    st_nlink;
18         unsigned int    __pad0;
19
20         struct timespec st_atim;
21         struct timespec st_mtim;
22         struct timespec st_ctim;
23         long            __unused[3];
24 };
25
26 #endif