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