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