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