git: 9front

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