shithub: riscv

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