ref: 8ed13fe6643eab17ef3f5cff75830d3a7c1bc715 dir: /sys/src/ape/lib/ap/gen/ldiv.c/
#include <stdlib.h> ldiv_t ldiv(long int numer, long int denom) { ldiv_t ans; ans.quot=numer/denom; ans.rem=numer-ans.quot*denom; return ans; }