These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / arch / h8300 / kernel / syscalls.c
1 #include <linux/syscalls.h>
2 #include <linux/signal.h>
3 #include <linux/unistd.h>
4
5 #undef __SYSCALL
6 #define __SYSCALL(nr, call) [nr] = (call),
7
8 #define sys_mmap2 sys_mmap_pgoff
9
10 asmlinkage int sys_rt_sigreturn(void);
11
12 void *_sys_call_table[__NR_syscalls] = {
13 #include <asm/unistd.h>
14 };