summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/pipe
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libfs/src/pipe')
-rw-r--r--cpukit/libfs/src/pipe/fifo.c14
-rw-r--r--cpukit/libfs/src/pipe/pipe.h10
2 files changed, 0 insertions, 24 deletions
diff --git a/cpukit/libfs/src/pipe/fifo.c b/cpukit/libfs/src/pipe/fifo.c
index d80a51f8cc..606bd68d5a 100644
--- a/cpukit/libfs/src/pipe/fifo.c
+++ b/cpukit/libfs/src/pipe/fifo.c
@@ -572,17 +572,3 @@ int pipe_ioctl(
return -EINVAL;
}
-
-/*
- * Interface to file system lseek.
- */
-int pipe_lseek(
- pipe_control_t *pipe,
- off_t offset,
- int whence,
- rtems_libio_t *iop
-)
-{
- /* Seek on pipe is not supported */
- return -ESPIPE;
-}
diff --git a/cpukit/libfs/src/pipe/pipe.h b/cpukit/libfs/src/pipe/pipe.h
index 52d0a85143..5aab78707a 100644
--- a/cpukit/libfs/src/pipe/pipe.h
+++ b/cpukit/libfs/src/pipe/pipe.h
@@ -104,16 +104,6 @@ extern int pipe_ioctl(
rtems_libio_t *iop
);
-/*
- * Interface to file system lseek.
- */
-extern int pipe_lseek(
- pipe_control_t *pipe,
- off_t offset,
- int whence,
- rtems_libio_t *iop
-);
-
#ifdef __cplusplus
}
#endif