diff options
Diffstat (limited to 'base/runtime/heap_allocator_other.odin')
| -rw-r--r-- | base/runtime/heap_allocator_other.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/runtime/heap_allocator_other.odin b/base/runtime/heap_allocator_other.odin index f3f199d7b..45049c7e9 100644 --- a/base/runtime/heap_allocator_other.odin +++ b/base/runtime/heap_allocator_other.odin @@ -2,14 +2,14 @@ //+private package runtime -heap_alloc :: proc(size: int, zero_memory := true) -> rawptr { +_heap_alloc :: proc(size: int, zero_memory := true) -> rawptr { unimplemented("base:runtime 'heap_alloc' procedure is not supported on this platform") } -heap_resize :: proc(ptr: rawptr, new_size: int) -> rawptr { +_heap_resize :: proc(ptr: rawptr, new_size: int) -> rawptr { unimplemented("base:runtime 'heap_resize' procedure is not supported on this platform") } -heap_free :: proc(ptr: rawptr) { +_heap_free :: proc(ptr: rawptr) { unimplemented("base:runtime 'heap_free' procedure is not supported on this platform") }
\ No newline at end of file |