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