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