diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-26 14:56:28 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-26 14:56:28 +0100 |
commit | 4cab9cdad95aba4934b22872c94e44fab759250c (patch) | |
tree | b45cf1ba9b196c41b7580ded72a8cbc6a6fd7764 /Source/Library/Userland | |
parent | d68a064819deaaa8e01eca3c7809050b25cedfbd (diff) | |
download | Melon-4cab9cdad95aba4934b22872c94e44fab759250c.tar.gz Melon-4cab9cdad95aba4934b22872c94e44fab759250c.zip |
Some changes...
Diffstat (limited to 'Source/Library/Userland')
-rw-r--r-- | Source/Library/Userland/Start.cpp | 4 | ||||
-rw-r--r-- | Source/Library/Userland/common.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Source/Library/Userland/Start.cpp b/Source/Library/Userland/Start.cpp index 930c4dd..4c5c559 100644 --- a/Source/Library/Userland/Start.cpp +++ b/Source/Library/Userland/Start.cpp @@ -47,7 +47,7 @@ extern "C" void start() { } namespace Mem { - void* alloc (u32int sz) { return heap.alloc(sz); } + void* alloc (size_t sz) { return heap.alloc(sz); } void free(void* ptr) { heap.free(ptr); } - void* mkXchgSpace (u32int sz) { return alloc(sz); } + void* mkXchgSpace (size_t sz) { return alloc(sz); } } diff --git a/Source/Library/Userland/common.h b/Source/Library/Userland/common.h index 679afd0..5569009 100644 --- a/Source/Library/Userland/common.h +++ b/Source/Library/Userland/common.h @@ -8,9 +8,9 @@ #include <CMem.ns.h> namespace Mem { - void* alloc(u32int); + void* alloc(size_t); void free(void*); - void* mkXchgSpace(u32int sz); + void* mkXchgSpace(size_t sz); } //Standard implemenations of operator new/delete |