diff --git a/sys/conf/files b/sys/conf/files index 6cfc96dfbce7..5dd7aa6f6143 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -177,7 +177,7 @@ netinet/igmp.c optional inet netinet/in.c optional inet netinet/in_pcb.c optional inet netinet/in_proto.c optional inet -netinet/in_rmx.c optional in_rmx +netinet/in_rmx.c optional inet netinet/ip_icmp.c optional inet netinet/ip_input.c optional inet netinet/ip_mroute.c optional inet diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index d397b64021c6..6dc690deb48a 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_proto.c 8.1 (Berkeley) 6/10/93 - * $Id: in_proto.c,v 1.6 1994/09/15 10:36:52 davidg Exp $ + * $Id: in_proto.c,v 1.7 1994/11/02 04:41:39 wollman Exp $ */ #include @@ -154,18 +154,12 @@ struct protosw inetsw[] = { }, }; -#ifdef IN_RMX extern int in_inithead(void **, int); -#endif struct domain inetdomain = { AF_INET, "internet", 0, 0, 0, inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])], 0, -#ifdef IN_RMX in_inithead, 32, sizeof(struct sockaddr_in) -#else - rn_inithead, 32, sizeof(struct sockaddr_in) -#endif }; #include "imp.h"