no_malloc_roundup 546 B

12345678
  1. o Code simplification and refactoring:
  2. - Finally remove support for malloc_good_size and malloc_usable_size.
  3. We had hoped that these functions would let us eke a little more
  4. memory out of our malloc implementation. Unfortunately, the only
  5. implementations that provided these functions are also ones that
  6. are already efficient about not overallocation: they never got us
  7. more than 7 or so bytes per allocation. Removing them saves us
  8. a little code complexity and a nontrivial amount of build complexity.