summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/rewinddir.c
blob: c85e6fd4d0e7f66946201b069dbdb9eeffbc082d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  rewinddir() - POSIX 1003.1b - XXX
 *
 *  $Id$
 */

#include <sys/types.h>
#include <assert.h>
#include <dirent.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>

void rewinddir(
  DIR *dirp
)
{
  errno = ENOSYS;
  return -1;
}