summaryrefslogtreecommitdiff
path: root/src/unistd/read.c
blob: dd82ce9c2537ed68cc37071007b9b69ffe0b2989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "errno.h"
#include "nonstd/syscall.h"

ssize_t read(int fildes, void *buf, size_t nbyte)
{
	SC(ssize_t, fildes, buf, nbyte);
}
/*
POSIX(1)
*/