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