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