Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
stdlib
/
imaxdiv.c
blob: b2ce821f51e3e2428e773e2e9eae6c2156157fb6 [
file
]
#include
<inttypes.h>
imaxdiv_t
imaxdiv
(
intmax_t
num
,
intmax_t
den
)
{
return
(
imaxdiv_t
){
num
/
den
,
num
%
den
};
}