ref: 91f426bd7c4eacd1656ae8da651eb9deb93d5763 dir: /libnpe/div.c/
#include <stdlib.h> div_t div(int n, int d) { return (div_t){n/d, n%d}; }