mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-01 19:30:46 +00:00
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);
|
|
}
|