The branch main has been updated by des: URL: https://cgit.FreeBSD.org/src/commit/?id=fa3f69fa4cabf50d667631b4b8083673bccc874f
commit fa3f69fa4cabf50d667631b4b8083673bccc874f Author: Steve Kargl <[email protected]> AuthorDate: 2026-06-04 16:31:26 +0000 Commit: Dag-Erling Smørgrav <[email protected]> CommitDate: 2026-06-04 16:31:26 +0000 libmsun: Fix incorrect MLINK for sincosl(3) PR: 295704 MFC after: 1 week --- lib/msun/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msun/Makefile b/lib/msun/Makefile index 5e9adb533760..865aee6df5c1 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -285,7 +285,7 @@ MLINKS+=round.3 roundf.3 round.3 roundl.3 MLINKS+=scalbn.3 scalbln.3 scalbn.3 scalblnf.3 scalbn.3 scalblnl.3 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3 MLINKS+=sin.3 sinf.3 sin.3 sinl.3 -MLINKS+=sincos.3 sincosf.3 sin.3 sincosl.3 +MLINKS+=sincos.3 sincosf.3 sincos.3 sincosl.3 MLINKS+=sinh.3 sinhf.3 sinh.3 sinhl.3 MLINKS+=sinpi.3 sinpif.3 sinpi.3 sinpil.3 MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 cbrtl.3 sqrt.3 sqrtf.3 \
