git: 9front

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