search for: bc08c5c

Displaying 1 result from an estimated 1 matches for "bc08c5c".

Did you mean: bc03ccc
2011 Aug 10
1
[PATCH v2] dirent.h add fdopendir()
...ild | 1 + usr/klibc/tests/fdopendir.c | 31 +++++++++++++++++++++++++++++++ 5 files changed, 75 insertions(+), 1 deletions(-) create mode 100644 usr/klibc/fdopendir.c create mode 100644 usr/klibc/tests/fdopendir.c diff --git a/usr/include/dirent.h b/usr/include/dirent.h index 725452e..bc08c5c 100644 --- a/usr/include/dirent.h +++ b/usr/include/dirent.h @@ -23,6 +23,7 @@ struct _IO_dir { typedef struct _IO_dir DIR; __extern DIR *opendir(const char *); +__extern DIR *fdopendir(int); __extern struct dirent *readdir(DIR *); __extern int closedir(DIR *); static __inline__ int dirfd(DI...