de-__P().

This commit is contained in:
Alfred Perlstein 2002-10-16 22:27:27 +00:00
parent 9ee35470c9
commit dde2897f82
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105301
2 changed files with 4 additions and 4 deletions

View file

@ -96,9 +96,9 @@
void gre_inet_ntoa(struct in_addr in); /* XXX */
#endif
static struct gre_softc *gre_lookup __P((struct mbuf *, u_int8_t));
static struct gre_softc *gre_lookup(struct mbuf *, u_int8_t);
static int gre_input2 __P((struct mbuf *, int, u_char));
static int gre_input2(struct mbuf *, int, u_char);
/*
* De-encapsulate a packet and feed it back through ip input (this

View file

@ -38,6 +38,6 @@
*/
#ifdef _KERNEL
void gre_input __P((struct mbuf *, ...));
void gre_mobile_input __P((struct mbuf *, ...));
void gre_input(struct mbuf *, ...);
void gre_mobile_input(struct mbuf *, ...);
#endif /* _KERNEL */