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