diff options
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/morecore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/malloc/morecore.c b/malloc/morecore.c index 57284e0a36..e391732b3d 100644 --- a/malloc/morecore.c +++ b/malloc/morecore.c @@ -42,8 +42,7 @@ libc_hidden_proto (__sbrk) and return the start of data space, or NULL on errors. If INCREMENT is negative, shrink data space. */ __malloc_ptr_t -__default_morecore (increment) - ptrdiff_t increment; +__default_morecore (ptrdiff_t increment) { __malloc_ptr_t result = (__malloc_ptr_t) __sbrk (increment); if (result == (__malloc_ptr_t) -1) |