X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/5ba3f43ea354af8ad55bea84372a2bc834d8757c..c3c9b80d004dbbfdf763edeb97968c6997e3b45b:/bsd/netinet/mptcp_seq.h diff --git a/bsd/netinet/mptcp_seq.h b/bsd/netinet/mptcp_seq.h index c79232ee6..ab49e61c9 100644 --- a/bsd/netinet/mptcp_seq.h +++ b/bsd/netinet/mptcp_seq.h @@ -27,16 +27,16 @@ */ #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. */ -#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_ */