gt.c 90 Bytes Edit Raw Blame History 1 2 3 4 5 6 /* X gt Y == Y lt X */ fd_constraint fd_gt(fd_int x, fd_int y) { return fd_lt(y, x); }