diff options
author | Craig A. Berry <craigberry@mac.com> | 2013-08-06 21:09:40 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2013-08-06 21:09:40 -0500 |
commit | dc588da0f1a8372922811ea3486ff170c92dc9a0 (patch) | |
tree | e88e97718d87bc81e7d576465faf072b444d7cef /regcomp.c | |
parent | e88ca83cb2da96ab9f1ada0aee57def2ba1479ec (diff) | |
download | perl-dc588da0f1a8372922811ea3486ff170c92dc9a0.tar.gz |
Don't multiply define Perl__invlist_dump.
It doesn't need to be in the extension if it's already in the core
top-level code. Defining it more than once leads to linker errors
for linkers that care about such things, namely VMS.
Broken in ad3f05adb1975.
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -8293,6 +8293,7 @@ Perl__invlist_contents(pTHX_ SV* const invlist) } #endif +#ifndef PERL_IN_XSUB_RE void Perl__invlist_dump(pTHX_ PerlIO *file, I32 level, const char * const indent, SV* const invlist) { @@ -8341,6 +8342,7 @@ Perl__invlist_dump(pTHX_ PerlIO *file, I32 level, const char * const indent, SV* count += 2; } } +#endif #ifdef PERL_ARGS_ASSERT__INVLISTEQ bool |