summaryrefslogtreecommitdiff
path: root/klibc/include/arch/parisc/klibc/archstat.h
blob: 7d28f459eeb3f7719ce2b2a633e23815973e09ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _KLIBC_ARCHSTAT_H
#define _KLIBC_ARCHSTAT_H

#define _STATBUF_ST_NSEC

struct stat {
	unsigned long long	st_dev;
	unsigned int		__pad1;

	unsigned int		__st_ino;	/* Not actually filled in */
	unsigned int		st_mode;
	unsigned int		st_nlink;
	unsigned int		st_uid;
	unsigned int		st_gid;
	unsigned long long	st_rdev;
	unsigned int		__pad2;
	signed long long	st_size;
	signed int		st_blksize;

	signed long long	st_blocks;
	struct timespec		st_atim;
	struct timespec		st_mtim;
	struct timespec		st_ctim;
	unsigned long long	st_ino;
};

#endif