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

div_t div(int numerator, int denominator)
{
	return (div_t){.quot = numerator / denominator,
		       .rem = numerator % denominator};
}