shithub: plan9front

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