diff options
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 5fbd268fed..da230d3493 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -385,7 +385,8 @@ extern "C" { powerpc32. For the time being, changing this is causing more compatibility problems due to malloc_get_state/malloc_set_state than will returning blocks not adequately aligned for long double objects - under -mlong-double-128. */ + under -mlong-double-128. + #define MALLOC_ALIGNMENT (2 * SIZE_SZ < __alignof__ (long double) \ ? __alignof__ (long double) : 2 * SIZE_SZ) */ |