1 //SPDX-License-Identifier: GPL-2.0-or-later
2 
3 #ifndef LAPI_USTAT_H
4 #define LAPI_USTAT_H
5 
6 #include "config.h"
7 
8 #include <sys/types.h>
9 
10 #ifdef HAVE_SYS_USTAT_H
11 # include <sys/ustat.h>
12 #elif HAVE_LINUX_TYPES_H
13 # include <linux/types.h>
14 struct ustat {
15 	__kernel_daddr_t f_tfree;
16 	ino_t f_tinode;
17 	char f_fname[6];
18 	char f_fpack[6];
19 };
20 #endif
21 
22 #endif /* LAPI_USTAT_H */
23