Changeset b68cc333 in rtems
- Timestamp:
- Aug 30, 2001, 6:35:01 PM (19 years ago)
- Children:
- 2b31cc8
- Parents:
- 6f1118a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libc/lseek.c
r6f1118a rb68cc333 18 18 #include <stdio.h> 19 19 20 #include <rtems/libio_.h>20 #include "libio_.h" 21 21 22 22 off_t lseek( … … 38 38 */ 39 39 40 if ( !iop->handlers->lseek _h)40 if ( !iop->handlers->lseek ) 41 41 set_errno_and_return_minus_one( ENOTSUP ); 42 42 … … 68 68 */ 69 69 70 status = (*iop->handlers->lseek _h)( iop, offset, whence );70 status = (*iop->handlers->lseek)( iop, offset, whence ); 71 71 if ( status == (off_t) -1 ) 72 72 iop->offset = old_offset;
Note: See TracChangeset
for help on using the changeset viewer.