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