mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 13:20:06 +00:00
20 lines
442 B
C
20 lines
442 B
C
|
#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! */
|
||
|
};
|