source: trunk/minix/lib/posix/_rewinddir.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 246 bytes
RevLine 
[9]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
11void rewinddir(DIR *dp)
12{
13 (void) seekdir(dp, 0);
14}
Note: See TracBrowser for help on using the repository browser.