diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-14 18:51:53 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-14 18:51:53 +0000 |
commit | 749a2e44eacf6ae6d0f9bf68b38b58c93c274f73 (patch) | |
tree | b3b78e07e0f3600507f1a4fb651161793be13dcf /malloc.c | |
parent | 294f01b3c6608e425fc20f97ae8e6ded32c4613a (diff) | |
download | perl-749a2e44eacf6ae6d0f9bf68b38b58c93c274f73.tar.gz |
various win32 fixes
- fixes that silence VC noises about dup exports, non-default libs, and
unsupported *.def file directives
- s/inplace/inplace_label/ malloc.c
- update Config{usemymalloc} based on d_mymalloc
- export Perl_*Vars
- fix makefiles to not build miniperl.exe twice, and to make it properly
when defaults are changed
p4raw-id: //depot/perl@1129
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1116,7 +1116,7 @@ realloc(void *mp, size_t nbytes) #endif ) goto hard_way; else if (incr == 0) { - inplace: + inplace_label: #ifdef RCHECK /* * Record new allocated size of block and @@ -1203,7 +1203,7 @@ realloc(void *mp, size_t nbytes) nmalloc[pow * BUCKETS_PER_POW2]++; #endif *(cp - M_OVERHEAD) = pow * BUCKETS_PER_POW2; /* Fill index. */ - goto inplace; + goto inplace_label; } else { hard_way: MUTEX_UNLOCK(&malloc_mutex); |