From 0680eec72ca129bc018697035d3686513c657317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Fri, 4 Nov 2005 16:13:13 +0000 Subject: [PATCH] added two missing functions : seekdir and telldir git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14699 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/posix/dirent.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headers/posix/dirent.h b/headers/posix/dirent.h index 9b49e1f23b..cf201de452 100644 --- a/headers/posix/dirent.h +++ b/headers/posix/dirent.h @@ -39,6 +39,8 @@ struct dirent *readdir(DIR *dir); int readdir_r(DIR *dir, struct dirent *entry, struct dirent **_result); int closedir(DIR *dir); void rewinddir(DIR *dir); +void seekdir(DIR *dir, long int loc); +long int telldir(DIR *); #ifdef __cplusplus }