git: 9front

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