aboutsummaryrefslogtreecommitdiff
path: root/base/runtime/default_allocators_general.odin
blob: cbaf4d22a31cda39e7da2bb0cd39ecfb35d42c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package runtime

when ODIN_DEFAULT_TO_NIL_ALLOCATOR {
	default_allocator_proc :: nil_allocator_proc
	default_allocator :: nil_allocator
} else when ODIN_DEFAULT_TO_PANIC_ALLOCATOR {
	default_allocator_proc :: panic_allocator_proc
	default_allocator :: panic_allocator
} else {
	default_allocator :: heap_allocator
	default_allocator_proc :: heap_allocator_proc
}