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