ge.c 90 Bytes Edit Raw Blame History 1 2 3 4 5 6 /* X ge Y == Y le X */ fd_constraint fd_ge(fd_int x, fd_int y) { return fd_le(y, x); }