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