diff options
author | des <des@FreeBSD.org> | 2001-11-03 03:17:16 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-11-03 03:17:16 +0000 |
commit | ddeebb893038ccb70dc59c7f05d41410606aad5b (patch) | |
tree | a03d146fa7a7ecc64186f6305dd95bdd902eb934 | |
parent | 7885415b9c992e06f3300a21f8963343d1f42bfe (diff) | |
download | FreeBSD-src-ddeebb893038ccb70dc59c7f05d41410606aad5b.zip FreeBSD-src-ddeebb893038ccb70dc59c7f05d41410606aad5b.tar.gz |
Declare struct uio so consumers don't have to #include <sys/uio.h> unless
they intend to call proc_rwmem().
-rw-r--r-- | sys/sys/ptrace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/ptrace.h b/sys/sys/ptrace.h index c530093..5c95ec1 100644 --- a/sys/sys/ptrace.h +++ b/sys/sys/ptrace.h @@ -67,6 +67,7 @@ int ptrace_single_step(struct thread *_td); struct reg; struct fpreg; struct dbreg; +struct uio; int proc_read_regs(struct thread *_td, struct reg *_reg); int proc_write_regs(struct thread *_td, struct reg *_reg); int proc_read_fpregs(struct thread *_td, struct fpreg *_fpreg); |