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