shithub: riscv

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