You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
225 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, 3, file, ptr, dir, 0, 0, 0);
}