diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-28 21:14:18 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-28 21:14:18 +0000 |
commit | df0003d4dd97bb27e464c2adb8c54893f719ec3c (patch) | |
tree | b5ef87a409e8caea3d17c476dc9dd71615779cb7 /malloc.c | |
parent | 59a6d928548d6aee50ca1cdd520abe66c9baa354 (diff) | |
download | perl-df0003d4dd97bb27e464c2adb8c54893f719ec3c.tar.gz |
minor cleanup
p4raw-id: //depot/perl@2112
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -572,10 +572,10 @@ static char bucket_of[] = static char *emergency_buffer; static MEM_SIZE emergency_buffer_size; +static Malloc_t emergency_sbrk(MEM_SIZE size); static Malloc_t -emergency_sbrk(size) - MEM_SIZE size; +emergency_sbrk(MEM_SIZE size) { MEM_SIZE rsize = (((size - 1)>>LOG_OF_MIN_ARENA) + 1)<<LOG_OF_MIN_ARENA; @@ -1615,8 +1615,7 @@ static long Perl_sbrk_oldsize; # define PERLSBRK_64_K (1<<16) Malloc_t -Perl_sbrk(size) -int size; +Perl_sbrk(int size) { IV got; int small, reqsize; |