summaryrefslogtreecommitdiff
path: root/src/dirent/seekdir.c
blob: 5be47d4a15564178eb84e73a0d9a9569fd8b30b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <dirent.h>
#include <unistd.h>
#include "__dirent.h"
#include "libc.h"

void seekdir(DIR *dir, long off)
{
	LOCK(dir->lock);
	dir->tell = lseek(dir->fd, off, SEEK_SET);
	dir->buf_pos = dir->buf_end = 0;
	UNLOCK(dir->lock);
}