summaryrefslogtreecommitdiff
path: root/malloc/morecore.c
diff options
context:
space:
mode:
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)