mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 20:53:39 +08:00
* sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
__cos, not sin and cos.
This commit is contained in:
parent
1de4f8eea0
commit
3eea24da17
@ -1,3 +1,8 @@
|
|||||||
|
2005-07-08 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
|
||||||
|
__cos, not sin and cos.
|
||||||
|
|
||||||
2005-07-07 Ulrich Drepper <drepper@redhat.com>
|
2005-07-07 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* resolv/res_send.c (send_dg): Recognize referral results and
|
* resolv/res_send.c (send_dg): Recognize referral results and
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Compute sine and cosine of argument.
|
/* Compute sine and cosine of argument.
|
||||||
Copyright (C) 1997, 2001 Free Software Foundation, Inc.
|
Copyright (C) 1997, 2001, 2005 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||||
|
|
||||||
@ -40,8 +40,8 @@ __sincos (double x, double *sinx, double *cosx)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
*sinx = sin (x);
|
*sinx = __sin (x);
|
||||||
*cosx = cos (x);
|
*cosx = __cos (x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
weak_alias (__sincos, sincos)
|
weak_alias (__sincos, sincos)
|
||||||
|
Loading…
Reference in New Issue
Block a user