summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/memfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libfs/src/imfs/memfile.c')
-rw-r--r--cpukit/libfs/src/imfs/memfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libfs/src/imfs/memfile.c b/cpukit/libfs/src/imfs/memfile.c
index 49b9b99654..a85f475b78 100644
--- a/cpukit/libfs/src/imfs/memfile.c
+++ b/cpukit/libfs/src/imfs/memfile.c
@@ -201,9 +201,9 @@ int memfile_ioctl(
*
* This routine processes the lseek() system call.
*/
-rtems_off64_t memfile_lseek(
+off_t memfile_lseek(
rtems_libio_t *iop,
- rtems_off64_t offset,
+ off_t offset,
int whence
)
{
@@ -237,7 +237,7 @@ rtems_off64_t memfile_lseek(
*/
int memfile_ftruncate(
rtems_libio_t *iop,
- rtems_off64_t length
+ off_t length
)
{
IMFS_jnode_t *the_jnode;