git: 9front

ref: 07eedf56db49f6f5cf6683549b6f4cf26d3aef96
dir: /sys/src/ape/lib/ap/gen/ldiv.c/

View raw version
#include <stdlib.h>

ldiv_t ldiv(long int numer, long int denom)
{
	ldiv_t ans;
	ans.quot=numer/denom;
	ans.rem=numer-ans.quot*denom;
	return ans;
}