xref: /plan9/sys/src/ape/lib/ap/gen/ldiv.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 #include <stdlib.h>
2 
ldiv(long int numer,long int denom)3 ldiv_t ldiv(long int numer, long int denom)
4 {
5 	ldiv_t ans;
6 	ans.quot=numer/denom;
7 	ans.rem=numer-ans.quot*denom;
8 	return ans;
9 }
10