summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/lldiv.c
blob: 0b962974c44028bca69292bd7f2c4b399c205762 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h> // for lldiv_t, lldiv

lldiv_t lldiv(long long numer, long long denom)
{
	lldiv_t result;
	result.quot = numer / denom;
	result.rem = numer % denom;
	return result;
}