1 #ifndef __ASM_SH_SYSCALLS_H 2 #define __ASM_SH_SYSCALLS_H 3 4 #ifdef __KERNEL__ 5 6 struct old_utsname; 7 8 asmlinkage int old_mmap(unsigned long addr, unsigned long len, 9 unsigned long prot, unsigned long flags, 10 int fd, unsigned long off); 11 asmlinkage long sys_mmap2(unsigned long addr, unsigned long len, 12 unsigned long prot, unsigned long flags, 13 unsigned long fd, unsigned long pgoff); 14 asmlinkage int sys_ipc(uint call, int first, int second, 15 int third, void __user *ptr, long fifth); 16 asmlinkage int sys_uname(struct old_utsname __user *name); 17 18 #ifdef CONFIG_SUPERH32 19 # include "syscalls_32.h" 20 #else 21 # include "syscalls_64.h" 22 #endif 23 24 #endif /* __KERNEL__ */ 25 #endif /* __ASM_SH_SYSCALLS_H */ 26