From dd54b8644c60cd7b7bee27ecaae4138e7c056c01 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 8 Mar 2013 16:46:45 +0000 Subject: Remove __malloc_ptrdiff_t. --- malloc/morecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'malloc/morecore.c') diff --git a/malloc/morecore.c b/malloc/morecore.c index 3b19406347..57284e0a36 100644 --- a/malloc/morecore.c +++ b/malloc/morecore.c @@ -43,7 +43,7 @@ libc_hidden_proto (__sbrk) If INCREMENT is negative, shrink data space. */ __malloc_ptr_t __default_morecore (increment) - __malloc_ptrdiff_t increment; + ptrdiff_t increment; { __malloc_ptr_t result = (__malloc_ptr_t) __sbrk (increment); if (result == (__malloc_ptr_t) -1) -- cgit 1.4.1