repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git]
/
lib
/
posix
/
_rewinddir.c
blob
b2f65f18fa0bf8f6a6ed0ff073ade19de1f88141
1
/* rewinddir() Author: Kees J. Bot
2
* 24 Apr 1989
3
*/
4
#define nil 0
5
#include <lib.h>
6
#define rewinddir _rewinddir
7
#define seekdir _seekdir
8
#include <sys/types.h>
9
#include <dirent.h>
10
11
void
rewinddir
(
DIR
*
dp
)
12
{
13
(
void
)
seekdir
(
dp
,
0
);
14
}