projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Revert "Bias the placement of kernel pages at lower PFNs"
[linux-2.6]
/
arch
/
parisc
/
lib
/
libgcc
/
__umodsi3.c
1
#include "libgcc.h"
2
3
u32 __umodsi3(u32 num, u32 den)
4
{
5
u32 v;
6
7
(void)__udivmodsi4(num, den, &v);
8
return v;
9
}
10
EXPORT_SYMBOL(__umodsi3);