From 4e8123ba980a708f8da9d08223f6c2b1606e182a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 1 Jan 2010 18:52:09 +0000 Subject: [PATCH] * Accidently moved the fdopendir() prototype around. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34839 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/dirent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/posix/dirent.h b/headers/posix/dirent.h index 6831bdeb48..41dd924e75 100644 --- a/headers/posix/dirent.h +++ b/headers/posix/dirent.h @@ -32,6 +32,7 @@ typedef struct __DIR DIR; extern "C" { #endif +DIR* fdopendir(int fd); DIR* opendir(const char* dirName); struct dirent* readdir(DIR* dir); int readdir_r(DIR* dir, struct dirent* entry, @@ -41,7 +42,6 @@ void rewinddir(DIR* dir); void seekdir(DIR* dir, long int position); long int telldir(DIR* dir); int dirfd(const DIR* dir); -DIR* fdopendir(int fd); int alphasort(const struct dirent** entry1, const struct dirent** entry2);