chiark / gitweb /
Make run_directory.c stat the place it is going to try to run.
[elogind.git] / klibc / include / arch / parisc / 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         unsigned int            __pad1;
9
10         unsigned int            __st_ino;       /* Not actually filled in */
11         unsigned int            st_mode;
12         unsigned int            st_nlink;
13         unsigned int            st_uid;
14         unsigned int            st_gid;
15         unsigned long long      st_rdev;
16         unsigned int            __pad2;
17         signed long long        st_size;
18         signed int              st_blksize;
19
20         signed long long        st_blocks;
21         struct timespec         st_atim;
22         struct timespec         st_mtim;
23         struct timespec         st_ctim;
24         unsigned long long      st_ino;
25 };
26
27 #endif