diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-26 01:33:32 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-11-26 01:33:32 +0000 |
commit | 61c8b47908b7351a4a26db1cad96af343512550d (patch) | |
tree | 9414c2a61bbba2c65c95b41591243db769edc711 /hv.c | |
parent | be679a9b8e5b022d9dbcf8917ef39627830b4ca2 (diff) | |
download | perl-61c8b47908b7351a4a26db1cad96af343512550d.tar.gz |
Fixup _55 for Win32:
Missed thread :-> perl_thread changes
Two #define THR (not the same)
K&R style func in hv.c
p4raw-id: //depot/ansiperl@309
Diffstat (limited to 'hv.c')
-rw-r--r-- | hv.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -217,10 +217,7 @@ hv_fetch_ent(HV *hv, SV *keysv, I32 lval, register U32 hash) } static void -hv_magic_check (hv, needs_copy, needs_store) -HV *hv; -bool *needs_copy; -bool *needs_store; +hv_magic_check (HV *hv, bool *needs_copy, bool *needs_store) { MAGIC *mg = SvMAGIC(hv); *needs_copy = FALSE; @@ -1089,3 +1086,4 @@ share_hek(char *str, I32 len, register U32 hash) } + |