diff options
Diffstat (limited to 'conform/linknamespace.pl')
-rw-r--r-- | conform/linknamespace.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/conform/linknamespace.pl b/conform/linknamespace.pl index 8ea437d457..847d2dd33a 100644 --- a/conform/linknamespace.pl +++ b/conform/linknamespace.pl @@ -46,9 +46,12 @@ close (STDSYMS) || die ("close $stdsyms_file: $!\n"); # linkage when stdio.h included (and possibly not then), not # generally. # +# * Bug 18442: re_syntax_options wrongly brought in by regcomp and +# used by re_comp. +# # * False positive: matherr only used conditionally. # -@whitelist = qw(signgam stdin stdout stderr matherr); +@whitelist = qw(signgam stdin stdout stderr re_syntax_options matherr); foreach my $sym (@whitelist) { $stdsyms{$sym} = 1; } |