diff options
| author | Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de> | 2002-09-02 04:45:52 -0500 |
|---|---|---|
| committer | Kai Germaschewski <kai@zephyr.physics.uiowa.edu> | 2002-09-02 04:45:52 -0500 |
| commit | f2906e3fcca553f2637a8fcebc0deef418c8b9bf (patch) | |
| tree | b3f81ee7d6c9b491450259b10dc494bd76e56347 /include | |
| parent | 841397672c12dc766a88a1c2589f55ca69cd9fc2 (diff) | |
include/linux/ptrace.h: fix includes
ptrace.h needs struct task_struct, so we need to include <linux/sched.h>.
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/ptrace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index 78512fa922b9..a0378ef64867 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h @@ -24,6 +24,7 @@ #define PTRACE_SYSCALL 24 #include <asm/ptrace.h> +#include <linux/sched.h> extern int ptrace_readdata(struct task_struct *tsk, unsigned long src, char *dst, int len); extern int ptrace_writedata(struct task_struct *tsk, char * src, unsigned long dst, int len); |
