mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 12:59:21 +08:00
9087163804
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
13 lines
170 B
C
13 lines
170 B
C
/* connector for lseek */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
off_t
|
|
lseek (int fd,
|
|
off_t pos,
|
|
int whence)
|
|
{
|
|
return _lseek_r (_REENT, fd, pos, whence);
|
|
}
|