summaryrefslogtreecommitdiff
path: root/src/dirent/_dirent.h
blob: 14af64ff7575fdba307fa732797195d198e7702c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef ___DIRENT_H__
#define ___DIRENT_H__

#include <dirent.h>

struct __DIR {
	int fd;
	struct dirent de;
};

#endif