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