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