aboutsummaryrefslogtreecommitdiff
blob: 935ffda7a0f4f7e10858af17daa819ca4d562412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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! */
  };