11 lines
222 B
C
11 lines
222 B
C
|
#include <machine/syscall.h>
|
||
|
#include <sys/types.h>
|
||
|
#include "internal_syscall.h"
|
||
|
|
||
|
/* Set position in a file. */
|
||
|
off_t
|
||
|
_lseek(int file, off_t ptr, int dir)
|
||
|
{
|
||
|
return syscall_errno (SYS_lseek, file, ptr, dir, 0, 0, 0);
|
||
|
}
|