repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
compiler/clib: Removed unused arosc_init.h file.
[AROS.git]
/
compiler
/
clib
/
rewinddir.c
blob
a1b2ba266ed2448e43c489f1077672456771c77d
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
/*****************************************************************************
7
8
NAME */
9
10
#include <dirent.h>
11
12
void
rewinddir
(
13
14
/* SYNOPSIS */
15
DIR
*
dir
)
16
17
/* FUNCTION
18
19
INPUTS
20
21
RESULT
22
23
NOTES
24
25
EXAMPLE
26
27
BUGS
28
29
SEE ALSO
30
31
INTERNALS
32
33
******************************************************************************/
34
{
35
seekdir
(
dir
,
0
);
36
}
37