git: 9front

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