diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-19 19:27:59 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-19 19:27:59 +0000 |
commit | 187593861a7a9b147ece9a975bc691f3540371ac (patch) | |
tree | e40223457bb8aef95658d98a5d0d8ac58b478a54 /proto.h | |
parent | 0945d666f9e33989e2071c69834ec769605040c7 (diff) | |
download | perl-187593861a7a9b147ece9a975bc691f3540371ac.tar.gz |
Marcus Holland-Moritz notes that the first argument to
refcounted_he_fetch() can be NULL.
p4raw-id: //depot/perl@29884
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -737,9 +737,7 @@ PERL_CALLCONV void Perl_hv_ksplit(pTHX_ HV* hv, IV newmax) __attribute__nonnull__(pTHX_1); */ PERL_CALLCONV HV * Perl_refcounted_he_chain_2hv(pTHX_ const struct refcounted_he *c); -PERL_CALLCONV SV * Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv, const char *key, STRLEN klen, int flags, U32 hash) - __attribute__nonnull__(pTHX_1); - +PERL_CALLCONV SV * Perl_refcounted_he_fetch(pTHX_ const struct refcounted_he *chain, SV *keysv, const char *key, STRLEN klen, int flags, U32 hash); PERL_CALLCONV void Perl_refcounted_he_free(pTHX_ struct refcounted_he *he); PERL_CALLCONV struct refcounted_he * Perl_refcounted_he_new(pTHX_ struct refcounted_he *const parent, SV *const key, SV *const value); PERL_CALLCONV SV** Perl_hv_store(pTHX_ HV* tb, const char* key, I32 klen, SV* val, U32 hash); |