aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_read.c
blob: 8b160647168063eaf0605a668c998394fdf28db6 (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <fs/fs.h>

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