mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-12 12:07:12 +08:00
Linux dirent structure definition.
This commit is contained in:
parent
4ca971409e
commit
e72c26d751
19
sysdeps/unix/sysv/aix/linux/linux-dirent.h
Normal file
19
sysdeps/unix/sysv/aix/linux/linux-dirent.h
Normal file
@ -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
Block a user