12 lines
282 B
C
12 lines
282 B
C
#ifndef ULIB_SYSCALL_SYSCALL_H_
|
|
#define ULIB_SYSCALL_SYSCALL_H_
|
|
|
|
#if !defined(__ASSEMBLER__)
|
|
|
|
uint64_t syscall(uint64_t num, uint64_t arg1, uint64_t arg2,
|
|
uint64_t arg3, uint64_t arg4, uint64_t arg5, uint64_t arg6);
|
|
|
|
#endif // ! __ASSEMBLER__
|
|
|
|
#endif // ULIB_SYSCALL_SYSCALL_H_
|