update case mappings to unicode 12.1.0
[musl.git] / src / dirent / seekdir.c
blobbf6cc6ec40453ed5a7bf4cffbfb5ef573e1ddc6e
1 #include <dirent.h>
2 #include <unistd.h>
3 #include "__dirent.h"
4 #include "lock.h"
6 void seekdir(DIR *dir, long off)
8 LOCK(dir->lock);
9 dir->tell = lseek(dir->fd, off, SEEK_SET);
10 dir->buf_pos = dir->buf_end = 0;
11 UNLOCK(dir->lock);