ref: 62c69b81c7249ee4e69c44c64391cdf9d1a7fc3e
dir: /sys/src/ape/lib/ap/alpha/_seek.c/
extern long __SEEK(long long*, int, long long, int);
long long
_SEEK(int fd, long long o, int p)
{
long long l;
if(__SEEK(&l, fd, o, p) < 0)
l = -1;
return l;
}