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