diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-03-08 16:47:43 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-03-08 16:47:43 +0000 |
commit | 5cc45e102bdc19dec494e4ae8f0eb832f11af3e5 (patch) | |
tree | 6893dc93edc0838d99dce16f1411b3011b41d37a /malloc | |
parent | dd54b8644c60cd7b7bee27ecaae4138e7c056c01 (diff) | |
download | glibc-5cc45e102bdc19dec494e4ae8f0eb832f11af3e5.zip glibc-5cc45e102bdc19dec494e4ae8f0eb832f11af3e5.tar.gz glibc-5cc45e102bdc19dec494e4ae8f0eb832f11af3e5.tar.bz2 |
Use ISO C prototype for __default_morecore.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/morecore.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/malloc/morecore.c b/malloc/morecore.c index 57284e0..e391732 100644 --- a/malloc/morecore.c +++ b/malloc/morecore.c @@ -42,8 +42,7 @@ libc_hidden_proto (__sbrk) and return the start of data space, or NULL on errors. If INCREMENT is negative, shrink data space. */ __malloc_ptr_t -__default_morecore (increment) - ptrdiff_t increment; +__default_morecore (ptrdiff_t increment) { __malloc_ptr_t result = (__malloc_ptr_t) __sbrk (increment); if (result == (__malloc_ptr_t) -1) |