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
release 1.1.24
[musl.git]
/
src
/
stdlib
/
div.c
blob
e42c1f14fa49464a606e17b8f142ef3c882c23a7
1
#include <stdlib.h>
2
3
div_t
div
(
int
num
,
int
den
)
4
{
5
return
(
div_t
){
num
/
den
,
num
%
den
};
6
}