13 lines
170 B
C
Raw Normal View History

2017-04-11 23:13:36 +02:00
/* connector for lseek */
#include <reent.h>
#include <unistd.h>
off_t
2018-12-28 16:30:48 +01:00
lseek (int fd,
off_t pos,
2017-04-11 23:13:36 +02:00
int whence)
{
return _lseek_r (_REENT, fd, pos, whence);
}