summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/rewinddir.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libc/rewinddir.c')
-rw-r--r--c/src/lib/libc/rewinddir.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/c/src/lib/libc/rewinddir.c b/c/src/lib/libc/rewinddir.c
index f480abf0f0..c85e6fd4d0 100644
--- a/c/src/lib/libc/rewinddir.c
+++ b/c/src/lib/libc/rewinddir.c
@@ -1,14 +1,6 @@
/*
* rewinddir() - POSIX 1003.1b - XXX
*
- * COPYRIGHT (c) 1989-1998.
- * On-Line Applications Research Corporation (OAR).
- * Copyright assigned to U.S. Government, 1994.
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.OARcorp.com/rtems/license.html.
- *
* $Id$
*/
@@ -23,16 +15,6 @@ void rewinddir(
DIR *dirp
)
{
- off_t status;
-
- status = lseek( dirp->dd_fd, 0, SEEK_SET );
-
- if( status == -1 ) {
- printf("REWINDDIR: errno: %d\n", errno );
- assert(0);
- }
-
- dirp->dd_loc = 0;
-
-
+ errno = ENOSYS;
+ return -1;
}