git: 9front

ref: dcb361e68aa85e102b684d511e8834e08dc7ed8a
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;
}