summaryrefslogtreecommitdiffstats
path: root/sys/netiso/tp_seq.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netiso/tp_seq.h')
-rw-r--r--sys/netiso/tp_seq.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/netiso/tp_seq.h b/sys/netiso/tp_seq.h
index f14e5ae..2441e6a 100644
--- a/sys/netiso/tp_seq.h
+++ b/sys/netiso/tp_seq.h
@@ -31,8 +31,12 @@
* SUCH DAMAGE.
*
* @(#)tp_seq.h 8.1 (Berkeley) 6/10/93
+ * $Id: tp_seq.h,v 1.2 1994/08/02 07:51:22 davidg Exp $
*/
+#ifndef _NETISO_TP_SEQ_H_
+#define _NETISO_TP_SEQ_H_
+
/***********************************************************
Copyright IBM Corporation 1987
@@ -62,8 +66,8 @@ SOFTWARE.
/*
* ARGO TP
*
- * $Header: tp_seq.h,v 5.1 88/10/12 12:20:59 root Exp $
- * $Source: /usr/argo/sys/netiso/RCS/tp_seq.h,v $
+ * $Header: /home/ncvs/src/sys/netiso/tp_seq.h,v 1.2 1994/08/02 07:51:22 davidg Exp $
+ * $Source: /home/ncvs/src/sys/netiso/tp_seq.h,v $
*
* These macros perform sequence number arithmetic modulo (2**7 or 2**31).
* The relevant fields in the tpcb are:
@@ -73,9 +77,6 @@ SOFTWARE.
* Not exactly fast, but at least it's maintainable.
*/
-#ifndef __TP_SEQ__
-#define __TP_SEQ__
-
#define SEQ(tpcb,x) \
((x) & (tpcb)->tp_seqmask)
@@ -121,4 +122,4 @@ SOFTWARE.
#define IN_SWINDOW(tpcb, seq, lwe, uwe)\
( SEQ_GT(tpcb, seq, lwe) && SEQ_LEQ(tpcb, seq, uwe) )
-#endif /* __TP_SEQ__ */
+#endif
OpenPOWER on IntegriCloud