kernel-dev/include/kernel/syscall.h

20 lines
239 B
C
Raw Permalink Normal View History

#ifndef SYSCALL_H
#define SYSCALL_H 1
#ifdef __x86_64__
#include <kernel/arch/x86_64/syscall.h>
#endif
/**
* @name syscall_init
*
* ```c
* void syscall_init();
* ```
*
*
*/
void syscall_init();
#endif