blob: 61f798e2cbe9a74a83cc5c878e78d6f456349034 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
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
9long 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}