URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [syscalls/] [syslseek.c] - Rev 9
Compare with Previous | Blame | View Log
/* connector for lseek */ #include <reent.h> #include <unistd.h> off_t _DEFUN (lseek, (fd, pos, whence), int fd _AND off_t pos _AND int whence) { return _lseek_r (_REENT, fd, pos, whence); }