diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-03 18:04:17 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-03 18:05:51 +0000 |
commit | 4ba0c7624af22979d48903837c60220f54b46269 (patch) | |
tree | cc7d9d828e9af744af5ce58ce5eaf237bf75a980 /proto.h | |
parent | 2547c837a73d50421f898a78d070bf820ac97f12 (diff) | |
download | perl-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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 /* |