aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/unistd/read.c
blob: c01baa755f822bf682cb02088f811194f4bb9a3d (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <syscall.h>

u32 sys_read(char *path, u32 offset, u32 count, char *buf)
{
	return syscall_read(path, offset, count, buf);
}