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