summaryrefslogtreecommitdiff
path: root/src/stdio/__stdio_read.c
blob: ee7e12587ee667ce753206517d00c749b122bee2 (plain) (blame)
1
2
3
4
5
6
#include "stdio_impl.h"

size_t __stdio_read(FILE *f, unsigned char *buf, size_t len)
{
	return __syscall_read(f->fd, buf, len);
}