Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
zircon
/
third_party
/
ulib
/
musl
/
src
/
stdlib
/
imaxdiv.c
blob: 1523a645651da9fb4d5caebc7835ec873da76b05 [
file
] [
log
] [
blame
] [
edit
]
#include
<inttypes.h>
imaxdiv_t
imaxdiv
(
intmax_t
num
,
intmax_t
den
)
{
return
(
imaxdiv_t
){
num
/
den
,
num
%
den
};
}