diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/alloc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index 4c9cbf10724..45234474a27 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -468,6 +468,11 @@ static void *pure_alloc (size_t, int); | |||
| 468 | ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \ | 468 | ? ((x) + (y) - 1) - ((x) + (y) - 1) % (y) \ |
| 469 | : ((x) + (y) - 1) & ~ ((y) - 1)) | 469 | : ((x) + (y) - 1) & ~ ((y) - 1)) |
| 470 | 470 | ||
| 471 | /* Bug#23764 */ | ||
| 472 | #ifdef ALIGN | ||
| 473 | # undef ALIGN | ||
| 474 | #endif | ||
| 475 | |||
| 471 | /* Return PTR rounded up to the next multiple of ALIGNMENT. */ | 476 | /* Return PTR rounded up to the next multiple of ALIGNMENT. */ |
| 472 | 477 | ||
| 473 | static void * | 478 | static void * |