summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-07-04 09:12:00 -0500
committerNicholas Clark <nick@ccl4.org>2005-07-04 19:36:51 +0000
commit3abe233e1ceba6675710708c5678345cce24ac62 (patch)
tree6d94b776e07f35480218ab138e028fb811c8b082 /proto.h
parent8afd2d2ecb560202b631f95a6aff50e34dd49052 (diff)
downloadperl-3abe233e1ceba6675710708c5678345cce24ac62.tar.gz
Remove unnecessary null check
Message-ID: <20050704191200.GA2614@petdance.com> p4raw-id: //depot/perl@25079
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index ebee0b6198..18250fcc38 100644
--- a/proto.h
+++ b/proto.h
@@ -2009,7 +2009,9 @@ STATIC void S_require_errno(pTHX_ GV *gv)
STATIC void S_hsplit(pTHX_ HV *hv)
__attribute__nonnull__(pTHX_1);
-STATIC void S_hfreeentries(pTHX_ HV *hv);
+STATIC void S_hfreeentries(pTHX_ HV *hv)
+ __attribute__nonnull__(pTHX_1);
+
STATIC HE* S_new_he(pTHX)
__attribute__malloc__
__attribute__warn_unused_result__;