]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/mptcp_seq.h
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / netinet / mptcp_seq.h
index c79232ee6b99a34f17c7419e77373ea8208b6695..ab49e61c9b6261bd6e96e8e5b57cd6691ec37020 100644 (file)
  */
 
 #ifndef _NETINET_MPTCP_SEQ_H_
  */
 
 #ifndef _NETINET_MPTCP_SEQ_H_
-#define        _NETINET_MPTCP_SEQ_H_
+#define _NETINET_MPTCP_SEQ_H_
 
 /*
  * Use 64-bit modulo arithmetic for comparing
  * Data Sequence Numbers and Data ACKs. Implies
  * 2**63 space is available for sending data.
  */
 
 /*
  * Use 64-bit modulo arithmetic for comparing
  * Data Sequence Numbers and Data ACKs. Implies
  * 2**63 space is available for sending data.
  */
-#define        MPTCP_SEQ_LT(a, b)      ((int64_t)((a) - (b)) < 0)
-#define        MPTCP_SEQ_LEQ(a, b)     ((int64_t)((a) - (b)) <= 0)
-#define        MPTCP_SEQ_GT(a, b)      ((int64_t)((a) - (b)) > 0)
-#define        MPTCP_SEQ_GEQ(a, b)     ((int64_t)((a) - (b)) >= 0)
+#define MPTCP_SEQ_LT(a, b)      ((int64_t)((a) - (b)) < 0)
+#define MPTCP_SEQ_LEQ(a, b)     ((int64_t)((a) - (b)) <= 0)
+#define MPTCP_SEQ_GT(a, b)      ((int64_t)((a) - (b)) > 0)
+#define MPTCP_SEQ_GEQ(a, b)     ((int64_t)((a) - (b)) >= 0)
 
 
-#endif /* _NETINET_MPTCP_SEQ_H_ */
+#endif  /* _NETINET_MPTCP_SEQ_H_ */