aboutsummaryrefslogtreecommitdiff
path: root/linker/linker_memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linker/linker_memory.cpp')
-rw-r--r--linker/linker_memory.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/linker/linker_memory.cpp b/linker/linker_memory.cpp
index 456d2541b..ce29997eb 100644
--- a/linker/linker_memory.cpp
+++ b/linker/linker_memory.cpp
@@ -72,10 +72,6 @@ void* malloc(size_t byte_count) {
return get_allocator().alloc(byte_count);
}
-void* memalign(size_t alignment, size_t byte_count) {
- return get_allocator().memalign(alignment, byte_count);
-}
-
void* calloc(size_t item_count, size_t item_size) {
return get_allocator().alloc(item_count*item_size);
}