diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-11 16:46:46 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-11 16:46:46 +0200 |
commit | 5b9f35ec7509e169f58500b66712eafb075d0b36 (patch) | |
tree | 64100c0535b9ad09a63d9900e886da6982818f20 /Source/Kernel/Core | |
parent | 378518140711bf19a80218711a018e8fd28d3ca7 (diff) | |
download | Melon-5b9f35ec7509e169f58500b66712eafb075d0b36.tar.gz Melon-5b9f35ec7509e169f58500b66712eafb075d0b36.zip |
Added a simple random generator
Diffstat (limited to 'Source/Kernel/Core')
-rw-r--r-- | Source/Kernel/Core/cppsupport.wtf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/Core/cppsupport.wtf.cpp b/Source/Kernel/Core/cppsupport.wtf.cpp index 16cd122..bad28f2 100644 --- a/Source/Kernel/Core/cppsupport.wtf.cpp +++ b/Source/Kernel/Core/cppsupport.wtf.cpp @@ -9,7 +9,6 @@ extern "C" int __cxa_atexit(void (*f)(void*), void *p, void *d) { return 0; } //Functions for quad divisions/modulo. Taken and arranged from klibc include/asm/div64.h //These only work with 32-bit divisors and only return 32-bit remainder. //TODO : think of some correct quad div/mod algorithms -extern "C" { inline u64int doDiv(u64int dividend, u32int divisor, u32int *remainder) { union { u64int v64; @@ -28,6 +27,7 @@ inline u64int doDiv(u64int dividend, u32int divisor, u32int *remainder) { return d.v64; } +extern "C" { u64int __udivdi3(u64int dividend, u64int b) { u32int divisor, remainder; divisor = b; |