* sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and

__cos, not sin and cos.
This commit is contained in:
Ulrich Drepper 2005-07-08 17:59:03 +00:00
parent 1de4f8eea0
commit 3eea24da17
2 changed files with 8 additions and 3 deletions

View File

@ -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>
* resolv/res_send.c (send_dg): Recognize referral results and

View File

@ -1,5 +1,5 @@
/* 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.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -40,8 +40,8 @@ __sincos (double x, double *sinx, double *cosx)
}
else
{
*sinx = sin (x);
*cosx = cos (x);
*sinx = __sin (x);
*cosx = __cos (x);
}
}
weak_alias (__sincos, sincos)