shithub: riscv

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