• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/syscalls.h>
3 #include <linux/signal.h>
4 #include <linux/unistd.h>
5 
6 #include <asm/syscalls.h>
7 
8 #undef __SYSCALL
9 #define __SYSCALL(nr, call) [nr] = (call),
10 
11 void *sys_call_table[__NR_syscalls] = {
12 #include <asm/unistd.h>
13 };
14