shithub: riscv

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