git: 9front

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