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