source: rtems/c/src/lib/libc/rewinddir.c @ d3b34d2

4.104.114.84.95
Last change on this file since d3b34d2 was d3b34d2, checked in by Joel Sherrill <joel.sherrill@…>, on 10/22/98 at 16:15:40

Changed all of these to stubs.

  • Property mode set to 100644
File size: 245 bytes
Line 
1/*
2 *  rewinddir() - POSIX 1003.1b - XXX
3 *
4 *  $Id$
5 */
6
7#include <sys/types.h>
8#include <assert.h>
9#include <dirent.h>
10#include <stdio.h>
11#include <errno.h>
12#include <unistd.h>
13
14void rewinddir(
15  DIR *dirp
16)
17{
18  errno = ENOSYS;
19  return -1;
20}
Note: See TracBrowser for help on using the repository browser.