1/*
2 * dirent.h
3 */
4
5#ifndef _DIRENT_H
6#define _DIRENT_H
7
8#include <klibc/extern.h>
9#include <klibc/compiler.h>
10#include <stddef.h>
11#include <sys/types.h>
12
13#include <sys/dirent.h>
14
15__extern DIR *opendir(const char *);
16__extern struct dirent *readdir(DIR *);
17__extern int closedir(DIR *);
18__extern DIR *fdopendir(int);
19
20#endif /* Not _DIRENT_H */
21