chiark / gitweb /
volume_id: provide libvolume_id.a file
[elogind.git] / klibc / include / arch / s390x / 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         unsigned int   st_mode;
11         unsigned int   st_uid;
12         unsigned int   st_gid;
13         unsigned int   __pad1;
14         unsigned long  st_rdev;
15         unsigned long  st_size;
16         struct timespec st_atim;
17         struct timespec st_mtim;
18         struct timespec st_ctim;
19         unsigned long  st_blksize;
20         long           st_blocks;
21         unsigned long  __unused[3];
22 };
23
24 #endif