/* bits/getdents.h: Definitions used for the getdents() system call. */ #ifndef _BITS_GETDENTS_H #define _BITS_GETDENTS_H #include typedef struct { ino_t inode; char name[129]; } luna_dirent; #endif