/* for modulo comparisons of timestamps */
#define TSTMP_LT(a,b) ((int)((a)-(b)) < 0)
+#define TSTMP_GT(a,b) ((int)((a)-(b)) > 0)
+#define TSTMP_LEQ(a,b) ((int)((a)-(b)) <= 0)
#define TSTMP_GEQ(a,b) ((int)((a)-(b)) >= 0)
/*
/* timestamp wrap-around time */
extern tcp_cc tcp_ccgen; /* global connection count */
-#endif KERNEL_PRIVATE
+#endif /* KERNEL_PRIVATE */
#endif /* _NETINET_TCP_SEQ_H_ */