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