diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | conform/linknamespace.pl | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2015-07-23 Mike Frysinger <vapier@gentoo.org> + * conform/linknamespace.pl (@whitelist): Add matherrf and matherrl. + +2015-07-23 Mike Frysinger <vapier@gentoo.org> + * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h (struct sigaction): Swap __glibc_reserved0 and sa_flags order. diff --git a/conform/linknamespace.pl b/conform/linknamespace.pl index 847d2dd33a..15fa6134ab 100644 --- a/conform/linknamespace.pl +++ b/conform/linknamespace.pl @@ -49,9 +49,11 @@ close (STDSYMS) || die ("close $stdsyms_file: $!\n"); # * Bug 18442: re_syntax_options wrongly brought in by regcomp and # used by re_comp. # -# * False positive: matherr only used conditionally. +# * False positive: matherr only used conditionally. matherrf/matherrl are used +# by IA64 too for the same reason. # -@whitelist = qw(signgam stdin stdout stderr re_syntax_options matherr); +@whitelist = qw(signgam stdin stdout stderr re_syntax_options matherr matherrf + matherrl); foreach my $sym (@whitelist) { $stdsyms{$sym} = 1; } |