lseek.c revision 1.1
1/* $Id: lseek.c,v 1.1 1994/04/02 05:38:18 cgd Exp $ */
2
3#include <sys/types.h>
4#include <sys/syscall.h>
5
6off_t
7lseek(fd, offset, whence)
8        int     fd;
9        off_t   offset;
10        int     whence;
11{
12        extern off_t __syscall();
13
14        return(__syscall((quad_t)SYS_lseek, fd, 0, offset, whence));
15}
16