blob: ebe8080b6482fc73ea7cc67d830660b886a30a96 [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);
}