summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-01-03 10:38:28 +0000
committerDavid Mitchell <davem@iabyn.com>2009-03-30 23:57:57 +0100
commit0a9e85c1cc2118b3aec1791f496ec5daadec17e7 (patch)
tree7b02571c0a2e9ede17509ea9c34342bcdfca4514 /proto.h
parentc17d15b9600d43b60db1020b490414769aa26059 (diff)
downloadperl-0a9e85c1cc2118b3aec1791f496ec5daadec17e7.tar.gz
get_isa_hash() is only used in S_isa_lookup(), so it can be static. Also, it has
never been in a released version of perl, so this change has no compatibility implications. (cherry-picked from commit aea323039bd02667df3bd60d27358d65842cd171)
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 68ee795ae0..8c064f0347 100644
--- a/proto.h
+++ b/proto.h
@@ -6643,7 +6643,7 @@ PERL_CALLCONV void Perl_sys_init3(int* argc, char*** argv, char*** env)
assert(argc); assert(argv); assert(env)
PERL_CALLCONV void Perl_sys_term(void);
-PERL_CALLCONV HV * Perl_get_isa_hash(pTHX_ HV *const stash)
+STATIC HV * S_get_isa_hash(pTHX_ HV *const stash)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_GET_ISA_HASH \
assert(stash)