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

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