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