URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [sysdeps/] [tell.c] - Rev 1780
Go to most recent revision | Compare with Previous | Blame | View Log
#define lseek __normal_lseek #include <unistd.h> #include <syscall.h> #undef lseek static inline _syscall3(off_t,lseek,int,fildes,off_t,offset,int,origin) off_t tell(int); off_t tell (int fildes) { return lseek (fildes, 0, SEEK_CUR); }
Go to most recent revision | Compare with Previous | Blame | View Log