]> git.ipfire.org Git - thirdparty/kernel/linux.git/blob - arch/score/kernel/sys_call_table.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / arch / score / kernel / sys_call_table.c
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 };