15 lines
225 B
C
15 lines
225 B
C
|
/* 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
|