aboutsummaryrefslogtreecommitdiffstats
path: root/math/lldiv.c
blob: 3a9008c47dfe277f0069c306cd8bda803b2aeb61 (plain) (blame)
1
2
3
4
5
6
7
#include "maths.h"

lldiv_t lldiv(long long numerator, long long denominator)
{
	return (lldiv_t){.quot = numerator / denominator,
			 .rem = numerator % denominator};
}