plan9port/src/lib9/seek.c
2003-11-23 18:12:54 +00:00

8 lines
118 B
C

#include <u.h>
#include <libc.h>
vlong
seek(int fd, vlong offset, int whence)
{
return lseek(fd, offset, whence);
}