s_sincos.c: use __weak_alias and not __weak_reference.

Fixes build on NetBSD/macppc, thanks to hint from riastradh@
This commit is contained in:
he 2022-08-28 14:30:41 +00:00
parent f498c30d4a
commit 9be9bcc17d
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
#include <sys/cdefs.h>
#if defined(LIBM_SCCS) && !defined(lint)
__RCSID("$NetBSD: s_sincos.c,v 1.2 2022/08/28 07:29:04 christos Exp $");
__RCSID("$NetBSD: s_sincos.c,v 1.3 2022/08/28 14:30:41 he Exp $");
#endif
#if 0
__FBSDID("$FreeBSD: head/lib/msun/src/s_sincos.c 319047 2017-05-28 06:13:38Z mmel $");
@ -86,5 +86,5 @@ sincos(double x, double *sn, double *cs)
}
#if !defined(__HAVE_LONG_DOUBLE)
__weak_reference(sincos, sincosl);
__weak_alias(sincos, sincosl);
#endif