shithub: front

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