os/kernel/syscalls.h
2018-10-22 06:44:17 -05:00

12 lines
197 B
C

#ifndef SYSCALLS_H
#define SYSCALLS_H
#include "../drivers/isr.h"
#include <stdint.h>
void syscall_write_string(char* str);
void syscall_screen_backspace();
void syscall_gets(char* buf);
#endif