blob: 8730dbf3f3759cb969e296c18b025acfe4b98d82 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef MELVIX_SYSCALL_H
#define MELVIX_SYSCALL_H
extern void idt_syscall();
void syscalls_install();
uint32_t sys_write(unsigned int buf, unsigned int count);
#endif
|