diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-10-30 16:24:37 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-10-30 16:24:37 +0000 |
commit | bc5cdc23883e8a43c7fbf40a0069d823caa8adb3 (patch) | |
tree | 1dd3cfd55e81f52d08d0f2d0474d78fe15f06063 /proto.h | |
parent | 711aba4c46216686b303e46f6e8b7dfac7b2420f (diff) | |
download | perl-bc5cdc23883e8a43c7fbf40a0069d823caa8adb3.tar.gz |
Replace hv_magic() with a macro to call sv_magic() directly. Move the
old body to mathoms.c
p4raw-id: //depot/perl@25897
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -684,8 +684,8 @@ PERL_CALLCONV SV* Perl_hv_iterval(pTHX_ HV* tb, HE* entry) PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax) __attribute__nonnull__(pTHX_1); -PERL_CALLCONV void Perl_hv_magic(pTHX_ HV* hv, GV* gv, int how) - __attribute__nonnull__(pTHX_1); +/* PERL_CALLCONV void Perl_hv_magic(pTHX_ HV* hv, GV* gv, int how) + __attribute__nonnull__(pTHX_1); */ PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash); PERL_CALLCONV HE* Perl_hv_store_ent(pTHX_ HV* tb, SV* key, SV* val, U32 hash); |