diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-03-25 22:54:23 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:23:33 -0400 |
commit | 3927f2e8f9afa3424bb51ca81f7abac01ffd0005 (patch) | |
tree | da9e335169572e6c743c084edce6a802f9e667ee /include/asm-i386 | |
parent | 9d729f72dca9406025bcfa9c1f660d71d9ef0ff5 (diff) |
[NET]: div64_64 consolidate (rev3)
Here is the current version of the 64 bit divide common code.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-i386')
-rw-r--r-- | include/asm-i386/div64.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-i386/div64.h b/include/asm-i386/div64.h index 75c67c785bb8..438e980068bd 100644 --- a/include/asm-i386/div64.h +++ b/include/asm-i386/div64.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef __I386_DIV64 | 1 | #ifndef __I386_DIV64 |
2 | #define __I386_DIV64 | 2 | #define __I386_DIV64 |
3 | 3 | ||
4 | #include <linux/types.h> | ||
5 | |||
4 | /* | 6 | /* |
5 | * do_div() is NOT a C function. It wants to return | 7 | * do_div() is NOT a C function. It wants to return |
6 | * two values (the quotient and the remainder), but | 8 | * two values (the quotient and the remainder), but |
@@ -45,4 +47,6 @@ div_ll_X_l_rem(long long divs, long div, long *rem) | |||
45 | return dum2; | 47 | return dum2; |
46 | 48 | ||
47 | } | 49 | } |
50 | |||
51 | extern uint64_t div64_64(uint64_t dividend, uint64_t divisor); | ||
48 | #endif | 52 | #endif |