summaryrefslogtreecommitdiff
path: root/osk.h
blob: 598895cedb0d6099857586bc687465dd5c5058e5 (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
/*
 * OS9 stat : @(#)stat.h	1.2 87/19/12
 */
/* @(#)stat.h	6.1 */
/*
 * Structure of the result of stat
 */

#ifndef CLK_TCK
#include <time.h>
#endif

struct	stat
{
	int	st_dev;
	long	st_ino;
	unsigned short	st_mode;
	unsigned short	st_nlink;
	unsigned short	st_uid;
	unsigned short	st_gid;
	int	st_rdev;
	long	st_size;
	time_t	st_atime;
	time_t	st_mtime;
	time_t	st_ctime;
};