git: 9front

ref: f6bff3c0830c1fe63dc45cd84d0a0a3a67b0cdf0
dir: /sys/src/libc/9sys/read.c/

View raw version
#include	<u.h>
#include	<libc.h>

long
read(int fd, void *buf, long n)
{
	return pread(fd, buf, n, -1LL);
}