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