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