summaryrefslogtreecommitdiff
path: root/src/dirent/seekdir.c
blob: bf6cc6ec40453ed5a7bf4cffbfb5ef573e1ddc6e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <dirent.h>
#include <unistd.h>
#include "__dirent.h"
#include "lock.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);
}