]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - arch/h8300/kernel/syscalls.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/kernel/linux.git] / arch / h8300 / kernel / syscalls.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
4e0c2098
YS
2#include <linux/syscalls.h>
3#include <linux/signal.h>
4#include <linux/unistd.h>
5
6#undef __SYSCALL
7#define __SYSCALL(nr, call) [nr] = (call),
8
9#define sys_mmap2 sys_mmap_pgoff
10
11asmlinkage int sys_rt_sigreturn(void);
12
13void *_sys_call_table[__NR_syscalls] = {
14#include <asm/unistd.h>
15};