commit | c822e0abbdbdb44274497d80ac3a270f08d83959 | [log] [tgz] |
---|---|---|
author | Nicolas Pitre <npitre@baylibre.com> | Mon Jan 25 20:55:16 2021 -0500 |
committer | Anas Nashif <anas.nashif@intel.com> | Tue Feb 02 19:08:24 2021 -0500 |
tree | 12913304d100b6e7d26051dcfce49d112d6aa847 | |
parent | 4690b8d5ec3179c94d57c324eea06d412af4d0e0 [diff] |
libc/minimal: fix realloc() allocated memory alignment The definition for realloc() says that it should return a pointer to the allocated memory which is suitably aligned for any built-in type. Turn sys_heap_realloc() into a sys_heap_aligned_realloc() and use it with __alignof__(z_max_align_t) to implement realloc() with proper memory alignment for any platform. Signed-off-by: Nicolas Pitre <npitre@baylibre.com>