root/arch/h8300/kernel/syscalls.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0
   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 
  11 asmlinkage int sys_rt_sigreturn(void);
  12 
  13 void *_sys_call_table[__NR_syscalls] = {
  14 #include <asm/unistd.h>
  15 };

/* [<][>][^][v][top][bottom][index][help] */