git: 9front

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