aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-generic
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/syscalls.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/asm-generic/syscalls.h b/include/asm-generic/syscalls.h
index d89dec864d42..7e4fdb649951 100644
--- a/include/asm-generic/syscalls.h
+++ b/include/asm-generic/syscalls.h
@@ -10,16 +10,15 @@
10 */ 10 */
11#ifndef sys_clone 11#ifndef sys_clone
12asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp, 12asmlinkage long sys_clone(unsigned long clone_flags, unsigned long newsp,
13 void __user *parent_tid, void __user *child_tid, 13 void __user *parent_tid, void __user *child_tid);
14 struct pt_regs *regs);
15#endif 14#endif
16 15
17#ifndef sys_fork 16#ifndef sys_fork
18asmlinkage long sys_fork(struct pt_regs *regs); 17asmlinkage long sys_fork(void);
19#endif 18#endif
20 19
21#ifndef sys_vfork 20#ifndef sys_vfork
22asmlinkage long sys_vfork(struct pt_regs *regs); 21asmlinkage long sys_vfork(void);
23#endif 22#endif
24 23
25#ifndef sys_execve 24#ifndef sys_execve