summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/read.c
blob: 54c29586143504febc8c5c49d20b6f009a043c9a (plain)
1
2
3
4
5
6
7
#include <syscall.h>
#include <unistd.h>

ssize_t read(int fildes, void *buf, size_t nbyte)
{
	return syscall(read, fildes, buf, nbyte);
}