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