about summary refs log tree commit diff
path: root/malloc/morecore.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-03-08 16:46:45 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-03-08 16:46:45 +0000
commitdd54b8644c60cd7b7bee27ecaae4138e7c056c01 (patch)
tree77b01ed80818f6033372b62739143b3e3eedac4e /malloc/morecore.c
parent1ba4f03035faabd9090f61ec5514e2abced5ca29 (diff)
downloadglibc-dd54b8644c60cd7b7bee27ecaae4138e7c056c01.tar.gz
glibc-dd54b8644c60cd7b7bee27ecaae4138e7c056c01.tar.xz
glibc-dd54b8644c60cd7b7bee27ecaae4138e7c056c01.zip
Remove __malloc_ptrdiff_t.
Diffstat (limited to 'malloc/morecore.c')
-rw-r--r--malloc/morecore.c2
1 files changed, 1 insertions, 1 deletions
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)