diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/netns/spp_var.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/netns/spp_var.h')
-rw-r--r-- | sys/netns/spp_var.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/sys/netns/spp_var.h b/sys/netns/spp_var.h index 5710e737e94..aa1ed49fbfa 100644 --- a/sys/netns/spp_var.h +++ b/sys/netns/spp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: spp_var.h,v 1.2 1996/03/04 08:20:35 niklas Exp $ */ +/* $OpenBSD: spp_var.h,v 1.3 2002/03/14 01:27:13 millert Exp $ */ /* $NetBSD: spp_var.h,v 1.6 1996/02/13 22:14:16 christos Exp $ */ /* @@ -198,31 +198,31 @@ struct sppcb; struct spidp; /* spp_debug.c */ -void spp_trace __P((int, u_int, struct sppcb *, struct spidp *, int)); +void spp_trace(int, u_int, struct sppcb *, struct spidp *, int); /* spp_usrreq.c */ -void spp_init __P((void)); -void spp_input __P((struct mbuf *, ...)); -int spp_reass __P((struct sppcb *, struct spidp *)); -void *spp_ctlinput __P((int, struct sockaddr *, void *)); -void spp_quench __P((struct nspcb *)); -int spp_fixmtu __P((struct nspcb *)); -int spp_output __P((struct mbuf *, ...)); -void spp_setpersist __P((struct sppcb *)); -int spp_ctloutput __P((int, struct socket *, int, int, struct mbuf **)); -int spp_usrreq __P((struct socket *, int, struct mbuf *, struct mbuf *, - struct mbuf *)); -int spp_usrreq_sp __P((struct socket *, int, struct mbuf *, struct mbuf *, - struct mbuf *)); -void spp_template __P((struct sppcb *)); -struct sppcb *spp_close __P((struct sppcb *)); -struct sppcb *spp_usrclosed __P((struct sppcb *)); -struct sppcb *spp_disconnect __P((struct sppcb *)); -struct sppcb *spp_drop __P((struct sppcb *, int)); -void spp_abort __P((struct nspcb *)); -void spp_fasttimo __P((void)); -void spp_slowtimo __P((void)); -struct sppcb *spp_timers __P((struct sppcb *, long)); +void spp_init(void); +void spp_input(struct mbuf *, ...); +int spp_reass(struct sppcb *, struct spidp *); +void *spp_ctlinput(int, struct sockaddr *, void *); +void spp_quench(struct nspcb *); +int spp_fixmtu(struct nspcb *); +int spp_output(struct mbuf *, ...); +void spp_setpersist(struct sppcb *); +int spp_ctloutput(int, struct socket *, int, int, struct mbuf **); +int spp_usrreq(struct socket *, int, struct mbuf *, struct mbuf *, + struct mbuf *); +int spp_usrreq_sp(struct socket *, int, struct mbuf *, struct mbuf *, + struct mbuf *); +void spp_template(struct sppcb *); +struct sppcb *spp_close(struct sppcb *); +struct sppcb *spp_usrclosed(struct sppcb *); +struct sppcb *spp_disconnect(struct sppcb *); +struct sppcb *spp_drop(struct sppcb *, int); +void spp_abort(struct nspcb *); +void spp_fasttimo(void); +void spp_slowtimo(void); +struct sppcb *spp_timers(struct sppcb *, long); #endif #define SPP_ISSINCR 128 |