source: trunk/libs/newlib/src/newlib/libc/syscalls/syslseek.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 170 bytes
Line 
1/* connector for lseek */
2
3#include <reent.h>
4#include <unistd.h>
5
6off_t
7lseek (int fd,
8     off_t pos,
9     int whence)
10{
11  return _lseek_r (_REENT, fd, pos, whence);
12}
Note: See TracBrowser for help on using the repository browser.