git: 9front

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