ref: be36c092ac061a04065720e98e5849130487be7f dir: /sys/src/ape/lib/ap/gen/div.c/
#include <stdlib.h> div_t div(int numer, int denom) { div_t ans; ans.quot=numer/denom; /* assumes division truncates */ ans.rem=numer-ans.quot*denom; return ans; }