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

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