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