summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2009-01-03 18:04:17 +0000
committerNicholas Clark <nick@ccl4.org>2009-01-03 18:05:51 +0000
commit4ba0c7624af22979d48903837c60220f54b46269 (patch)
treecc7d9d828e9af744af5ce58ce5eaf237bf75a980 /proto.h
parent2547c837a73d50421f898a78d070bf820ac97f12 (diff)
downloadperl-4ba0c7624af22979d48903837c60220f54b46269.tar.gz
Changing get_isa_hash() to static means that it needs to be wrapped in
an #if defined(PERL_IN_UNIVERSAL_C).
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/proto.h b/proto.h
index 1efa37ed99..d23ae7d120 100644
--- a/proto.h
+++ b/proto.h
@@ -5871,6 +5871,11 @@ STATIC bool S_isa_lookup(pTHX_ HV *stash, const char * const name)
#define PERL_ARGS_ASSERT_ISA_LOOKUP \
assert(stash); assert(name)
+STATIC HV * S_get_isa_hash(pTHX_ HV *const stash)
+ __attribute__nonnull__(pTHX_1);
+#define PERL_ARGS_ASSERT_GET_ISA_HASH \
+ assert(stash)
+
#endif
#if defined(PERL_IN_LOCALE_C) || defined(PERL_DECL_PROT)
@@ -6649,11 +6654,6 @@ PERL_CALLCONV struct refcounted_he * Perl_store_cop_label(pTHX_ struct refcounte
#define PERL_ARGS_ASSERT_STORE_COP_LABEL \
assert(label)
-STATIC HV * S_get_isa_hash(pTHX_ HV *const stash)
- __attribute__nonnull__(pTHX_1);
-#define PERL_ARGS_ASSERT_GET_ISA_HASH \
- assert(stash)
-
END_EXTERN_C
/*