4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-22 06:57:36 +08:00

13 lines
170 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
/* connector for lseek */
#include <reent.h>
#include <unistd.h>
off_t
lseek (int fd,
off_t pos,
int whence)
2000-02-17 19:39:52 +00:00
{
return _lseek_r (_REENT, fd, pos, whence);
}