OSDN Git Service

Split out the definition of struct stat into the new arch
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / alpha / bits / kernel_stat.h
1 #ifndef _BITS_STAT_STRUCT_H
2 #define _BITS_STAT_STRUCT_H
3
4 /* This file provides whatever this particular arch's kernel thinks 
5  * struct stat should look like...  It turns out each arch has a 
6  * different opinion on the subject... */
7 struct stat {
8         unsigned int    st_dev;
9         unsigned int    st_ino;
10         unsigned int    st_mode;
11         unsigned int    st_nlink;
12         unsigned int    st_uid;
13         unsigned int    st_gid;
14         unsigned int    st_rdev;
15         long            st_size;
16         unsigned long   st_atime;
17         unsigned long   st_mtime;
18         unsigned long   st_ctime;
19         unsigned int    st_blksize;
20         int             st_blocks;
21         unsigned int    st_flags;
22         unsigned int    st_gen;
23 };
24
25
26 #endif  /*  _BITS_STAT_STRUCT_H */
27