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/net/if_faith.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/net/if_faith.c')
-rw-r--r-- | sys/net/if_faith.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net/if_faith.c b/sys/net/if_faith.c index 0b1bc9bdcf5..962080f2104 100644 --- a/sys/net/if_faith.c +++ b/sys/net/if_faith.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_faith.c,v 1.9 2001/12/26 06:29:01 itojun Exp $ */ +/* $OpenBSD: if_faith.c,v 1.10 2002/03/14 01:27:09 millert Exp $ */ /* * Copyright (c) 1982, 1986, 1993 * The Regents of the University of California. All rights reserved. @@ -70,12 +70,12 @@ #include "bpfilter.h" -static int faithioctl __P((struct ifnet *, u_long, caddr_t)); -int faithoutput __P((struct ifnet *, struct mbuf *, struct sockaddr *, - struct rtentry *)); -static void faithrtrequest __P((int, struct rtentry *, struct rt_addrinfo *)); +static int faithioctl(struct ifnet *, u_long, caddr_t); +int faithoutput(struct ifnet *, struct mbuf *, struct sockaddr *, + struct rtentry *); +static void faithrtrequest(int, struct rtentry *, struct rt_addrinfo *); -void faithattach __P((int)); +void faithattach(int); static struct ifnet faithif[NFAITH]; |