repo.or.cz
/
gpxe.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[tcp] Enable AF_INET6 transport for tcp connections
[gpxe.git]
/
src
/
libgcc
/
__umoddi3.c
blob
fb4da991c18498829888101ef91cfea8ac6c07d2
1
/*
2
* arch/i386/libgcc/__umoddi3.c
3
*/
4
5
#include
"libgcc.h"
6
7
__libgcc
uint64_t
__umoddi3
(
uint64_t
num
,
uint64_t
den
)
8
{
9
uint64_t
v
;
10
11
(
void
)
__udivmoddi4
(
num
,
den
, &
v
);
12
return
v
;
13
}