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