//SPDX-License-Identifier: GPL-2.0-or-later #ifndef LAPI_USTAT_H #define LAPI_USTAT_H #include "config.h" #include #ifdef HAVE_SYS_USTAT_H # include #elif HAVE_LINUX_TYPES_H # include struct ustat { __kernel_daddr_t f_tfree; ino_t f_tinode; char f_fname[6]; char f_fpack[6]; }; #endif #endif /* LAPI_USTAT_H */