12345678910111213141516171819 |
- // SPDX-License-Identifier: GPL-2.0-only
- #define __SYSCALL_COMPAT
- #include <linux/compat.h>
- #include <linux/syscalls.h>
- #include <asm-generic/mman-common.h>
- #include <asm-generic/syscalls.h>
- #include <asm/syscall.h>
- #undef __SYSCALL
- #define __SYSCALL(nr, call) [nr] = (call),
- asmlinkage long compat_sys_rt_sigreturn(void);
- void * const compat_sys_call_table[__NR_syscalls] = {
- [0 ... __NR_syscalls - 1] = sys_ni_syscall,
- #include <asm/unistd.h>
- };
|