score: add prototypes for wrapped syscalls
authorArnd Bergmann <arnd@arndb.de>
Fri, 19 Jun 2009 11:40:41 +0000 (13:40 +0200)
committerArnd Bergmann <arnd@arndb.de>
Fri, 19 Jun 2009 12:10:46 +0000 (14:10 +0200)
Every system call should be declared, so this adds missing
declarations for the ones we were missing so far.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/score/include/asm/syscalls.h

index 00c28e0..1dd5e0d 100644 (file)
@@ -1,8 +1,10 @@
 #ifndef _ASM_SCORE_SYSCALLS_H
 #define _ASM_SCORE_SYSCALLS_H
 
-asmlinkage long sys_clone(int flags, unsigned long stack, struct pt_regs *regs);
-#define sys_clone sys_clone
+asmlinkage long score_clone(struct pt_regs *regs);
+asmlinkage long score_execve(struct pt_regs *regs);
+asmlinkage long score_sigaltstack(struct pt_regs *regs);
+asmlinkage long score_rt_sigreturn(struct pt_regs *regs);
 
 #include <asm-generic/syscalls.h>