summaryrefslogtreecommitdiff
path: root/src/dirent/__dirent.h
blob: 38a27b0690d009308071550b21074375bda4979e (plain) (blame)
1
2
3
4
5
6
7
8
9
struct __DIR_s
{
	int fd;
	off_t tell;
	int buf_pos;
	int buf_end;
	int lock[2];
	char buf[2048];
};