mirror of git://sourceware.org/git/glibc.git
Linux dirent structure definition.
This commit is contained in:
parent
4ca971409e
commit
e72c26d751
|
@ -0,0 +1,19 @@
|
|||
#include "linuxtypes.h"
|
||||
|
||||
struct linuxdirent
|
||||
{
|
||||
__linux_ino_t d_ino;
|
||||
__linux_off_t d_off;
|
||||
unsigned short int d_reclen;
|
||||
unsigned char d_type;
|
||||
char d_name[256]; /* We must not include limits.h! */
|
||||
};
|
||||
|
||||
struct linuxdirent64
|
||||
{
|
||||
__linux_ino64_t d_ino;
|
||||
__linux_off64_t d_off;
|
||||
unsigned short int d_reclen;
|
||||
unsigned char d_type;
|
||||
char d_name[256]; /* We must not include limits.h! */
|
||||
};
|
Loading…
Reference in New Issue