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*4882a593SmuzhiyunSYSCALL_DEFINE2(arch_prctl, int, option, unsigned long, arg2) 6*4882a593Smuzhiyun { 7*4882a593Smuzhiyun return -EINVAL; 8*4882a593Smuzhiyun } 9