diff options
Diffstat (limited to 'sys/netinet/tcp_debug.h')
| -rw-r--r-- | sys/netinet/tcp_debug.h | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/sys/netinet/tcp_debug.h b/sys/netinet/tcp_debug.h index b6b134a77ad4..6316ed992dbe 100644 --- a/sys/netinet/tcp_debug.h +++ b/sys/netinet/tcp_debug.h @@ -31,9 +31,12 @@   * SUCH DAMAGE.   *   *	from: @(#)tcp_debug.h	7.4 (Berkeley) 6/28/90 - *	$Id: tcp_debug.h,v 1.2 1993/10/16 18:26:23 rgrimes Exp $ + *	$Id: tcp_debug.h,v 1.3 1993/11/07 17:48:04 wollman Exp $   */ +#ifndef _NETINET_TCP_DEBUG_H_ +#define _NETINET_TCP_DEBUG_H_ 1 +  struct	tcp_debug {  	n_time	td_time;  	short	td_act; @@ -56,5 +59,6 @@ char	*tanames[] =  #endif  #define	TCP_NDEBUG 100 -struct	tcp_debug tcp_debug[TCP_NDEBUG]; -int	tcp_debx; +extern struct	tcp_debug tcp_debug[TCP_NDEBUG]; +extern int	tcp_debx; +#endif /* _NETINET_TCP_DEBUG_H_ */ | 
