git: 9front

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