Disable prototypes that conflict with ones in <netinet/in_pcb.h>. The

conflicts stopped the LINT kernel from being buildable.
This commit is contained in:
Bruce Evans 1994-11-15 14:23:06 +00:00
parent b0d1e6de04
commit e44e6415cf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4502

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* @(#)tp_pcb.c 8.1 (Berkeley) 6/10/93 * @(#)tp_pcb.c 8.1 (Berkeley) 6/10/93
* $Id$ * $Id: tp_pcb.c,v 1.2 1994/08/02 07:51:20 davidg Exp $
*/ */
/*********************************************************** /***********************************************************
@ -63,7 +63,7 @@ SOFTWARE.
/* /*
* ARGO TP * ARGO TP
* *
* $Header: /home/ncvs/src/sys/netiso/tp_pcb.c,v 1.1.1.1 1994/05/24 10:06:49 rgrimes Exp $ * $Header: /home/ncvs/src/sys/netiso/tp_pcb.c,v 1.2 1994/08/02 07:51:20 davidg Exp $
* $Source: /home/ncvs/src/sys/netiso/tp_pcb.c,v $ * $Source: /home/ncvs/src/sys/netiso/tp_pcb.c,v $
* *
* *
@ -262,8 +262,11 @@ int in_recycle_tsuffix();
int tpip_mtu(); int tpip_mtu();
int in_pcbbind(); int in_pcbbind();
int in_pcbconnect(); int in_pcbconnect();
#if 0
/* XXX these are now declared as returning void in <netinet/in_pcb.h>. */
int in_pcbdisconnect(); int in_pcbdisconnect();
int in_pcbdetach(); int in_pcbdetach();
#endif
int in_pcballoc(); int in_pcballoc();
int tpip_output(); int tpip_output();
int tpip_output_dg(); int tpip_output_dg();