diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-27 09:23:19 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-09-05 10:15:53 -0600 |
commit | 550697d618054b2358da0f4da60663859d63454c (patch) | |
tree | 601ca727f4ced3118a4895fc128daa2db3a82445 /proto.h | |
parent | 030d06e7936a548e30f37c7cb0e9ba7fce43aabc (diff) | |
download | perl-550697d618054b2358da0f4da60663859d63454c.tar.gz |
perlapi: deprecate pack_cat() (a mathoms func)
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2584,10 +2584,12 @@ PERL_CALLCONV void Perl_optimize_optree(pTHX_ OP* o); #define PERL_ARGS_ASSERT_OPTIMIZE_OPTREE \ assert(o) #ifndef NO_MATHOMS -PERL_CALLCONV void Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags); +PERL_CALLCONV void Perl_pack_cat(pTHX_ SV *cat, const char *pat, const char *patend, SV **beglist, SV **endlist, SV ***next_in_list, U32 flags) + __attribute__deprecated__; #define PERL_ARGS_ASSERT_PACK_CAT \ assert(cat); assert(pat); assert(patend); assert(beglist); assert(endlist); assert(next_in_list) #endif + PERL_CALLCONV void Perl_package(pTHX_ OP* o); #define PERL_ARGS_ASSERT_PACKAGE \ assert(o) |