git: 9front

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