- `malloc(0)` may allocate where `realloc(ptr, 0)` frees or is undefined behavior! - Some allocators *can* create zero-sized allocs, but then can't reallocate them! - Kinda wish my realloc traits took `NonZeroUsize`s
malloc(0)may allocate whererealloc(ptr, 0)frees or is undefined behavior!NonZeroUsizes