Fixed a missing forward declaration and unsorting of prototypes in rev.1.18.

This commit is contained in:
Bruce Evans 2001-10-04 07:12:37 +00:00
parent 212c98aae9
commit 152bd66c13
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84439

View file

@ -52,10 +52,11 @@ struct sockaddr_un {
#ifdef _KERNEL
struct mbuf;
struct socket;
struct sockopt;
int uipc_ctloutput __P((struct socket *so, struct sockopt *sopt));
int uipc_usrreq __P((struct socket *so, int req, struct mbuf *m,
struct mbuf *nam, struct mbuf *control));
int uipc_ctloutput __P((struct socket *so, struct sockopt *sopt));
int unp_connect2 __P((struct socket *so, struct socket *so2));
void unp_dispose __P((struct mbuf *m));
int unp_externalize __P((struct mbuf *rights));