shithub: riscv

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