mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
14 lines
210 B
C
14 lines
210 B
C
|
/* connector for lseek */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
off_t
|
||
|
_DEFUN (lseek, (fd, pos, whence),
|
||
|
int fd _AND
|
||
|
off_t pos _AND
|
||
|
int whence)
|
||
|
{
|
||
|
return _lseek_r (_REENT, fd, pos, whence);
|
||
|
}
|