Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor wording change

...

Function

Initialization

aligned_alloc()

Does not perform initialization

calloc()

Writes zeros to Zero-initializes allocated memory

malloc()

Does not perform initialization

realloc()

Copies contents from original pointer; may not initialize all memory

...