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

u32 write(char *path, u32 offset, u32 count, u8 *buf)
{
	return syscall_write(path, offset, count, buf);
}