diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-07-19 17:55:22 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1998-07-19 17:55:22 +0000 |
commit | 4a33f861d7306c2a47424e9dc3b9646bcaddec90 (patch) | |
tree | 7b2ec86c8737c1317fde395e756bb3843faa02cb /hv.c | |
parent | 84fee439e17f74d72fd55282112c02bc24f1cad2 (diff) | |
download | perl-4a33f861d7306c2a47424e9dc3b9646bcaddec90.tar.gz |
PL_ for perl's malloc
p4raw-id: //depot/ansiperl@1569
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -682,7 +682,7 @@ hsplit(HV *hv) #if defined(STRANGE_MALLOC) || defined(MYMALLOC) Renew(a, ARRAY_ALLOC_BYTES(newsize), char); if (!a) { - nomemok = FALSE; + PL_nomemok = FALSE; return; } #else @@ -757,7 +757,7 @@ hv_ksplit(HV *hv, IV newmax) #if defined(STRANGE_MALLOC) || defined(MYMALLOC) Renew(a, ARRAY_ALLOC_BYTES(newsize), char); if (!a) { - nomemok = FALSE; + PL_nomemok = FALSE; return; } #else |