Last change
on this file since dd1be7c was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
345 bytes
|
Rev | Line | |
---|
[e16e8f2] | 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 */ |
---|
Note: See
TracBrowser
for help on using the repository browser.