shithub: npe

ref: 26ce37c49642e2875a36650734b9619b21c49be5
dir: /libnpe/div.c/

View raw version
#include <stdlib.h>

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