shithub: riscv

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