summaryrefslogtreecommitdiff
path: root/pfinet/linux-src/include/linux/dirent.h
blob: a18f7e4630e0cfe794e8fc54191a834456d06ea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _LINUX_DIRENT_H
#define _LINUX_DIRENT_H

struct dirent {
	long		d_ino;
	__kernel_off_t	d_off;
	unsigned short	d_reclen;
	char		d_name[256]; /* We must not include limits.h! */
};

#endif