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