mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
228 B
13 lines
228 B
#include <dirent.h>
|
|
#include <unistd.h>
|
|
#include "__dirent.h"
|
|
#include "libc.h"
|
|
|
|
void rewinddir(DIR *dir)
|
|
{
|
|
LOCK(dir->lock);
|
|
lseek(dir->fd, 0, SEEK_SET);
|
|
dir->buf_pos = dir->buf_end = 0;
|
|
dir->tell = 0;
|
|
UNLOCK(dir->lock);
|
|
}
|
|
|