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