summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/linux-1.0/dirent.h
blob: 7f783a198e076cfd239623d88bae3717394ca50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#ifndef _SYS_DIRENT_H
#define _SYS_DIRENT_H

#include <sys/types.h>
#include <linux/limits.h>

struct dirent {
	long			d_ino;
	off_t			d_off;
	unsigned short	d_reclen;
	char			d_name[NAME_MAX+1];
};

#ifndef	d_fileno
#define d_fileno	d_ino
#endif

#ifndef	d_namlen
#define	d_namlen	d_reclen
#endif

#ifndef MAXNAMLEN
#define MAXNAMLEN	NAME_MAX
#endif

#endif