yuezonghe | 824eb0c | 2024-06-27 02:32:26 -0700 | [diff] [blame] | 1 | /* |
2 | * syscall() library function | ||||
3 | * | ||||
4 | * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. | ||||
5 | */ | ||||
6 | |||||
7 | #include <sys/syscall.h> | ||||
8 | |||||
9 | long syscall(long sysnum, long arg1, long arg2, long arg3, long arg4, long arg5, long arg6) | ||||
10 | { | ||||
11 | return INLINE_SYSCALL_NCS(sysnum, 6, arg1, arg2, arg3, arg4, arg5, arg6); | ||||
12 | } |