2000-05-06 04:03:03 +08:00
|
|
|
#include "aix-types.h"
|
2000-05-02 07:44:22 +08:00
|
|
|
|
2000-05-06 04:03:03 +08:00
|
|
|
struct aixdirent
|
2000-05-02 07:44:22 +08:00
|
|
|
{
|
2000-05-06 04:03:03 +08:00
|
|
|
aixino_t d_ino;
|
|
|
|
aixoff_t d_off;
|
2000-05-02 07:44:22 +08:00
|
|
|
unsigned short int d_reclen;
|
2000-05-06 04:03:03 +08:00
|
|
|
unsigned short int d_namlen;
|
2000-05-02 07:44:22 +08:00
|
|
|
char d_name[256]; /* We must not include limits.h! */
|
|
|
|
};
|
|
|
|
|
2000-05-06 04:03:03 +08:00
|
|
|
struct aixdirent64
|
2000-05-02 07:44:22 +08:00
|
|
|
{
|
2000-05-06 04:03:03 +08:00
|
|
|
aixino64_t d_ino;
|
|
|
|
aixoff64_t d_off;
|
2000-05-02 07:44:22 +08:00
|
|
|
unsigned short int d_reclen;
|
2000-05-06 04:03:03 +08:00
|
|
|
unsigned short int d_namlen;
|
2000-05-02 07:44:22 +08:00
|
|
|
char d_name[256]; /* We must not include limits.h! */
|
|
|
|
};
|