repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git]
/
src
/
dirent
/
rewinddir.c
blob
7ddda437213d182bd90b3aa119ca4a43720d6cfc
1
#include <dirent.h>
2
#include <unistd.h>
3
#include
"__dirent.h"
4
#include
"lock.h"
5
6
void
rewinddir
(
DIR
*
dir
)
7
{
8
LOCK
(
dir
->
lock
);
9
lseek
(
dir
->
fd
,
0
,
SEEK_SET
);
10
dir
->
buf_pos
=
dir
->
buf_end
=
0
;
11
dir
->
tell
=
0
;
12
UNLOCK
(
dir
->
lock
);
13
}