shithub: plan9front

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