From: Jaswinder Singh Date: Mon, 21 Jul 2008 17:05:38 +0000 (+0530) Subject: x86: ptrace.c declare functions before they get used X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c1686aeaf0780055ffcd4b224b73d5ada77630e8;p=linux-beck.git x86: ptrace.c declare functions before they get used Signed-off-by: Jaswinder Singh --- diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index 8a71db803da6..48c1d5a890de 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h @@ -148,6 +148,9 @@ extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, void signal_fault(struct pt_regs *regs, void __user *frame, char *where); #endif +extern long syscall_trace_enter(struct pt_regs *); +extern void syscall_trace_leave(struct pt_regs *); + static inline unsigned long regs_return_value(struct pt_regs *regs) { return regs->ax;