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