summary refs log tree commit diff
path: root/malloc/morecore.c
diff options
context:
space:
mode:
Diffstat (limited to 'malloc/morecore.c')
-rw-r--r--malloc/morecore.c3
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)