#ifndef __ASM_GENERIC_SYSCALLS_H#define __ASM_GENERIC_SYSCALLS_H#include <linux/compiler.h>#include <linux/linkage.h>/* * Calling conventions for these system calls can differ, so * it's possible to override them. */#ifndef sys_mmap2asmlinkagelongsys_mmap2(unsignedlongaddr,unsignedlonglen,unsignedlongprot,unsignedlongflags,unsignedlongfd,unsignedlongpgoff);#endif#ifndef sys_mmapasmlinkagelongsys_mmap(unsignedlongaddr,unsignedlonglen,unsignedlongprot,unsignedlongflags,unsignedlongfd,off_tpgoff);#endif#ifndef sys_rt_sigreturnasmlinkagelongsys_rt_sigreturn(structpt_regs*regs);#endif#endif /* __ASM_GENERIC_SYSCALLS_H */