diff options
author | Craig A. Berry <craigberry@mac.com> | 2018-07-08 12:44:27 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2018-07-08 14:49:42 -0500 |
commit | 71525f77826ad33944c007b06b68a1f14a085e7a (patch) | |
tree | 441515164ba824d74c386b7cf1fdbd5820a50d8a /perl.h | |
parent | 2f2a2ed1c0bbba915d8fbb368503976317358592 (diff) | |
download | perl-71525f77826ad33944c007b06b68a1f14a085e7a.tar.gz |
Make new EBCDIC tables global.
They are defined in the Perl library but referenced in the Perl
executable, but the Perl executable can't see them unless they
are exported by the library, and some linkers only make a symbol
a public export if they've been told to explicitly.
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -5518,7 +5518,7 @@ static U8 utf8d_C9[] = { * FF 1 */ -EXTCONST U8 perl_extended_utf8_dfa_tab[] = { +EXTCONST U8 PL_extended_utf8_dfa_tab[] = { /* The first part of the table maps bytes to character classes to reduce * the size of the transition table and create bitmasks. */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /*00-0F*/ @@ -5656,7 +5656,7 @@ EXTCONST U8 perl_extended_utf8_dfa_tab[] = { * F5-FF 1 */ -EXTCONST U8 strict_utf8_dfa_tab[] = { +EXTCONST U8 PL_strict_utf8_dfa_tab[] = { /* The first part of the table maps bytes to character classes to reduce * the size of the transition table and create bitmasks. */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /*00-0F*/ @@ -5771,7 +5771,7 @@ EXTCONST U8 strict_utf8_dfa_tab[] = { * F5-FF 1 */ -EXTCONST U8 C9_utf8_dfa_tab[] = { +EXTCONST U8 PL_c9_utf8_dfa_tab[] = { /* The first part of the table maps bytes to character classes to reduce * the size of the transition table and create bitmasks. */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /*00-0F*/ @@ -5844,9 +5844,9 @@ EXTCONST U8 C9_utf8_dfa_tab[] = { # else /* End of is DOINIT */ -EXTCONST U8 perl_extended_utf8_dfa_tab[]; -EXTCONST U8 strict_utf8_dfa_tab[]; -EXTCONST U8 C9_utf8_dfa_tab[]; +EXTCONST U8 PL_extended_utf8_dfa_tab[]; +EXTCONST U8 PL_strict_utf8_dfa_tab[]; +EXTCONST U8 PL_c9_utf8_dfa_tab[]; # endif #endif /* end of isn't EBCDIC */ |