blob: c18e9fa4bf2e6961386016eedf5e393078672cb2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "aix-types.h"
struct aixdirent
{
aixino_t d_ino;
aixoff_t d_off;
unsigned short int d_reclen;
unsigned short int d_namlen;
char d_name[256]; /* We must not include limits.h! */
};
struct aixdirent64
{
aixino64_t d_ino;
aixoff64_t d_off;
unsigned short int d_reclen;
unsigned short int d_namlen;
char d_name[256]; /* We must not include limits.h! */
};
|