blob: f441cf1207b207a492bf46c9bc56e21c94a374ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MELVIX_SYSCALL_H
#define MELVIX_SYSCALL_H
extern void idt_syscall();
void syscalls_install();
uint32_t sys_write(char *buf);
uint32_t sys_read(char *buf);
#endif
|