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