git: 9front

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