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