source: rtems/cpukit/libfs/src/defaults/default_lseek.c @ 3b7c123

4.115
Last change on this file since 3b7c123 was e4c0a04b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/06/11 at 11:52:45

2011-11-06 Ralf Corsépius <ralf.corsepius@…>

PR1945/cpukit

  • libfs/src/defaults/default_ftruncate.c, libfs/src/defaults/default_lseek.c: Replace rtems_off64_t with off_t.
  • Property mode set to 100644
File size: 503 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2010.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#include <rtems/libio.h>
13#include <rtems/libio_.h>
14#include <rtems/seterr.h>
15
16off_t rtems_filesystem_default_lseek(
17  rtems_libio_t *iop,
18  off_t          length,
19  int            whence
20)
21{
22  rtems_set_errno_and_return_minus_one( ENOTSUP );
23}
Note: See TracBrowser for help on using the repository browser.