blob: fddecc76efb7c3e5146f6ceea2aed79f8484aa6d [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Vineet Gupta4adeefe2013-01-18 15:12:18 +05302
3#include <linux/syscalls.h>
4#include <linux/signal.h>
5#include <linux/unistd.h>
6
7#include <asm/syscalls.h>
8
9#define sys_clone sys_clone_wrapper
Vineet Gupta4adeefe2013-01-18 15:12:18 +053010
11#undef __SYSCALL
12#define __SYSCALL(nr, call) [nr] = (call),
13
14void *sys_call_table[NR_syscalls] = {
15 [0 ... NR_syscalls-1] = sys_ni_syscall,
16#include <asm/unistd.h>
17};