Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/netinet/raw_ip.c,v retrieving revision 1.78.2.1 retrieving revision 1.79 diff -u -p -r1.78.2.1 -r1.79 --- src/sys/netinet/raw_ip.c 2004/05/10 15:00:12 1.78.2.1 +++ src/sys/netinet/raw_ip.c 2004/04/26 01:31:57 1.79 @@ -1,4 +1,4 @@ -/* $NetBSD: raw_ip.c,v 1.78.2.1 2004/05/10 15:00:12 tron Exp $ */ +/* $NetBSD: raw_ip.c,v 1.79 2004/04/26 01:31:57 matt Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -61,7 +61,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.78.2.1 2004/05/10 15:00:12 tron Exp $"); +__KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1.79 2004/04/26 01:31:57 matt Exp $"); #include "opt_inet.h" #include "opt_ipsec.h" @@ -97,7 +97,6 @@ __KERNEL_RCSID(0, "$NetBSD: raw_ip.c,v 1 #ifdef FAST_IPSEC #include -#include /* XXX ipsecstat namespace */ #endif /* FAST_IPSEC*/ struct inpcbtable rawcbtable; @@ -134,13 +133,7 @@ rip_init() * mbuf chain. */ void -#if __STDC__ rip_input(struct mbuf *m, ...) -#else -rip_input(m, va_alist) - struct mbuf *m; - va_dcl -#endif { int proto; struct ip *ip = mtod(m, struct ip *); @@ -309,13 +302,7 @@ rip_ctlinput(cmd, sa, v) * Tack on options user may have setup with control call. */ int -#if __STDC__ rip_output(struct mbuf *m, ...) -#else -rip_output(m, va_alist) - struct mbuf *m; - va_dcl -#endif { struct inpcb *inp; struct ip *ip;