xref: /inferno-os/lib9/seek.c (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1 #include "lib9.h"
2 #include <sys/types.h>
3 #include <fcntl.h>
4 
5 vlong
seek(int fd,vlong where,int from)6 seek(int fd, vlong where, int from)
7 {
8 	return lseek(fd, where, from);
9 }
10