git: 9front

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