summaryrefslogtreecommitdiff
path: root/src/stdlib/lldiv.c
blob: f4835ec2a6882a8336ed02af17ca3b37920f81f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>

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

/*
STDC(199901)
*/