DESCRIPTION
The lldiv function computes the value of numer divided by denom and returns the stored result in the form of the
.Vt lldiv_t type. The
.Vt lldiv_t type is defined as:
typedef struct {
long long quot; /* Quotient. */
long long rem; /* Remainder. */
} lldiv_t;
SEE ALSO
div(3), imaxdiv(3), ldiv(3), math(3)
STANDARDS
HISTORY