ack/plat/linux386/libsys/lseek.c
2007-04-21 23:02:11 +00:00

15 lines
222 B
C

/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include "libsys.h"
off_t lseek(int fd, off_t offset, int whence)
{
return _syscall(__NR_lseek, fd, offset, whence);
}