shithub: npe

ref: 0eabd603f8768063fb423d7b065fe1124837e2f2
dir: /libnpe/div.c/

View raw version
#include <stdlib.h>

div_t
div(int n, int d)
{
	return (div_t){n/d, n%d};
}