source:
trunk/libs/newlib/src/libgloss/mn10300/lseek.c
@
546
Last change on this file since 546 was 444, checked in by , 6 years ago | |
---|---|
File size: 202 bytes |
Rev | Line | |
---|---|---|
[444] | 1 | #include <_ansi.h> |
2 | #include <sys/types.h> | |
3 | #include <sys/stat.h> | |
4 | #include <sys/unistd.h> | |
5 | #include "trap.h" | |
6 | ||
7 | ||
8 | off_t | |
9 | _lseek (int file, | |
10 | off_t ptr, | |
11 | int dir) | |
12 | { | |
13 | return TRAP0 (SYS_lseek, file, ptr, dir); | |
14 | } |
Note: See TracBrowser
for help on using the repository browser.