Merge branch 'master' into odin-global-constants-as-enums

This commit is contained in:
gingerBill
2022-02-15 15:47:24 +00:00
committed by GitHub
113 changed files with 5553 additions and 4255 deletions
+2
View File
@@ -727,6 +727,8 @@ heap_alloc :: proc(size: int) -> rawptr {
}
heap_resize :: proc(ptr: rawptr, new_size: int) -> rawptr {
// NOTE: _unix_realloc doesn't guarantee new memory will be zeroed on
// POSIX platforms. Ensure your caller takes this into account.
return _unix_realloc(ptr, c.size_t(new_size))
}