1 /*
2  * Copyright (c) 2005-2020 Rich Felker, et al.
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  * Note: From the musl project
7  */
8 
9 typedef uint64_t host_nlink_t;
10 
11 struct host_kstat {
12 	host_dev_t st_dev;
13 	host_ino_t st_ino;
14 	host_nlink_t st_nlink;
15 	host_mode_t st_mode;
16 	host_uid_t st_uid;
17 	host_gid_t st_gid;
18 	host_dev_t st_rdev;
19 	host_off_t st_size;
20 	host_blksize_t st_blksize;
21 	host_blkcnt_t st_blocks;
22 	long st_atime_sec;
23 	long st_atime_nsec;
24 	long st_mtime_sec;
25 	long st_mtime_nsec;
26 	long st_ctime_sec;
27 	long st_ctime_nsec;
28 	long __pad_for_future[3];
29 };
30