Luna/libc/include/bits/getdents.h

15 lines
225 B
C
Raw Normal View History

2023-03-28 19:28:56 +00:00
/* bits/getdents.h: Definitions used for the getdents() system call. */
#ifndef _BITS_GETDENTS_H
#define _BITS_GETDENTS_H
#include <sys/types.h>
typedef struct
{
ino_t inode;
char name[129];
} luna_dirent;
#endif