shithub: riscv

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