diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-05-25 17:57:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-05-25 17:57:14 +0000 |
commit | c4a8ad7b79ce710708fd7d5af84bf9f13fdd2ab0 (patch) | |
tree | ed8f81a0ff4b4322d519e2625590e3a2f9eb52e5 /sys | |
parent | 6be30a2cf89bb382ebec254ca6b29a4261e9c374 (diff) |
need to declare struct proct before using a pointer to it; ok kettenis thib
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/protosw.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h index e8242bd0fae..d941efcfc6a 100644 --- a/sys/sys/protosw.h +++ b/sys/sys/protosw.h @@ -1,4 +1,4 @@ -/* $OpenBSD: protosw.h,v 1.11 2008/05/23 15:51:12 thib Exp $ */ +/* $OpenBSD: protosw.h,v 1.12 2008/05/25 17:57:13 deraadt Exp $ */ /* $NetBSD: protosw.h,v 1.10 1996/04/09 20:55:32 cgd Exp $ */ /*- @@ -59,6 +59,7 @@ struct mbuf; struct sockaddr; struct socket; struct domain; +struct proc; struct protosw { short pr_type; /* socket type used for */ |