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