libc/libgloss/riscv/sys_lseek.c

11 lines
222 B
C
Raw Permalink Normal View History

#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);
}