shithub: riscv

ref: 9d3bc1646915d7e7a69dcf614690fdcec6e6aa7a
dir: /sys/src/ape/lib/ap/alpha/_seek.c/

View raw version
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;
}