DEBSOURCES
Skip Quicknav
sources / 9base / 1%3A6-5 / lib9 / seek.c
12345678
#include <u.h> #include <libc.h> vlong seek(int fd, vlong offset, int whence) { return lseek(fd, offset, whence); }