00db10
commit 5cc45e102bdc19dec494e4ae8f0eb832f11af3e5
00db10
Author: Joseph Myers <joseph@codesourcery.com>
00db10
Date:   Fri Mar 8 16:47:43 2013 +0000
00db10
00db10
    Use ISO C prototype for __default_morecore.
00db10
00db10
diff --git a/malloc/morecore.c b/malloc/morecore.c
00db10
index 1e7b77749ff1700d..de013bda22ff6fb9 100644
00db10
--- a/malloc/morecore.c
00db10
+++ b/malloc/morecore.c
00db10
@@ -42,8 +42,7 @@ libc_hidden_proto (__sbrk)
00db10
    and return the start of data space, or NULL on errors.
00db10
    If INCREMENT is negative, shrink data space.  */
00db10
 __malloc_ptr_t
00db10
-__default_morecore (increment)
00db10
-     ptrdiff_t increment;
00db10
+__default_morecore (ptrdiff_t increment)
00db10
 {
00db10
   __malloc_ptr_t result = (__malloc_ptr_t) __sbrk (increment);
00db10
   if (result == (__malloc_ptr_t) -1)