shithub: npe

ref: 041d3c9d8de4ed92c5cafc3c12c5170113e55677
dir: /libnpe/div.c/

View raw version
#include <stdlib.h>

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