blob: 5be47d4a15564178eb84e73a0d9a9569fd8b30b3 [file] [log] [blame]
#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);
}