c6d234
commit dd54b8644c60cd7b7bee27ecaae4138e7c056c01
c6d234
Author: Joseph Myers <joseph@codesourcery.com>
c6d234
Date:   Fri Mar 8 16:46:45 2013 +0000
c6d234
c6d234
    Remove __malloc_ptrdiff_t.
c6d234
c6d234
Conflicts:
c6d234
	malloc/malloc.h
c6d234
c6d234
Adjusted to keep the definition in the public <malloc.h> header file.
c6d234
c6d234
diff --git a/malloc/morecore.c b/malloc/morecore.c
c6d234
index 8a72ba6a3d70a865..1e7b77749ff1700d 100644
c6d234
--- a/malloc/morecore.c
c6d234
+++ b/malloc/morecore.c
c6d234
@@ -43,7 +43,7 @@ libc_hidden_proto (__sbrk)
c6d234
    If INCREMENT is negative, shrink data space.  */
c6d234
 __malloc_ptr_t
c6d234
 __default_morecore (increment)
c6d234
-     __malloc_ptrdiff_t increment;
c6d234
+     ptrdiff_t increment;
c6d234
 {
c6d234
   __malloc_ptr_t result = (__malloc_ptr_t) __sbrk (increment);
c6d234
   if (result == (__malloc_ptr_t) -1)