xref: /OK3568_Linux_fs/kernel/arch/x86/um/syscalls_32.c (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0
2*4882a593Smuzhiyun #include <linux/syscalls.h>
3*4882a593Smuzhiyun #include <os.h>
4*4882a593Smuzhiyun 
SYSCALL_DEFINE2(arch_prctl,int,option,unsigned long,arg2)5*4882a593Smuzhiyun SYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2)
6*4882a593Smuzhiyun {
7*4882a593Smuzhiyun 	return -EINVAL;
8*4882a593Smuzhiyun }
9