X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=proto.h;h=244ddc13f6fedb6f488d002ef3bfdfa53ee42dfc;hb=a3e6e81e81213c31f0612471c427044481a95287;hp=f10ce56a1a99dcf60926b6fd55130bcfb5ba288f;hpb=123892d916359369839f3896f283189be71dc32c;p=p5sagit%2Fp5-mst-13.2.git diff --git a/proto.h b/proto.h index f10ce56..244ddc1 100644 --- a/proto.h +++ b/proto.h @@ -6567,6 +6567,16 @@ PERL_CALLCONV SV* Perl_mro_set_private_data(pTHX_ struct mro_meta *const smeta, #define PERL_ARGS_ASSERT_MRO_SET_PRIVATE_DATA \ assert(smeta); assert(which); assert(data) +PERL_CALLCONV const struct mro_alg * Perl_mro_get_from_name(pTHX_ SV *name) + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_MRO_GET_FROM_NAME \ + assert(name) + +PERL_CALLCONV void Perl_mro_register(pTHX_ const struct mro_alg *mro) + __attribute__nonnull__(pTHX_1); +#define PERL_ARGS_ASSERT_MRO_REGISTER \ + assert(mro) + PERL_CALLCONV struct mro_meta* Perl_mro_meta_init(pTHX_ HV* stash) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_MRO_META_INIT \