shithub: npe

ref: e28466717fffc16d6d2d0257c782270a04303596
dir: /libnpe/div.c/

View raw version
#include <stdlib.h>

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