URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [syscalls/] [syslseek.c] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
/* connector for lseek */ #include <reent.h> #include <unistd.h> off_t lseek (fd, pos, whence) int fd; off_t pos; int whence; { #ifdef REENTRANT_SYSCALLS_PROVIDED return _lseek_r (_REENT, fd, pos, whence); #else return _lseek (fd, pos, whence); #endif }
Go to most recent revision | Compare with Previous | Blame | View Log