repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix dl_iterate_phdr in static PIE binaries
[musl.git]
/
src
/
stdlib
/
lldiv.c
blob
7aaf7a0e6f24be999a824fe5b40750e346b66603
1
#include <stdlib.h>
2
3
lldiv_t
lldiv
(
long long
num
,
long long
den
)
4
{
5
return
(
lldiv_t
){
num
/
den
,
num
%
den
};
6
}