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