summaryrefslogtreecommitdiff
path: root/libc/misc/dirent/seekdir.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 22:49:36 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 22:49:36 +0000
commit8bdc62b0890760ebe6ddd70f2841b5136fbf7cb0 (patch)
tree4c1d6888d0bc4b3e1ce914faccd5063c77b41a1d /libc/misc/dirent/seekdir.c
parent025490cb327377cf26993dfd839fcd0c81f5ce7e (diff)
Move the dirent stuff. I suppose it is system dependant, but then
it really should be grouped together too. And it needed to be grouped more then it needed to be in sysdeps/linux/common
Diffstat (limited to 'libc/misc/dirent/seekdir.c')
-rw-r--r--libc/misc/dirent/seekdir.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/misc/dirent/seekdir.c b/libc/misc/dirent/seekdir.c
new file mode 100644
index 000000000..7e4f24f72
--- /dev/null
+++ b/libc/misc/dirent/seekdir.c
@@ -0,0 +1,14 @@
+#include <errno.h>
+#include <unistd.h>
+#include "dirstream.h"
+
+
+void seekdir(DIR * dir, off_t offset)
+{
+ if (!dir) {
+ errno = EBADF;
+ return;
+ }
+ dir->dd_nextoff = lseek(dir->dd_fd, offset, SEEK_SET);
+ dir->dd_size = dir->dd_nextloc = 0;
+}