ref: c06f967b07ce0cf3c2e3895ef9b608caa5bbce98 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; }