]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Use __sin and
authorUlrich Drepper <drepper@redhat.com>
Fri, 8 Jul 2005 17:59:03 +0000 (17:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 8 Jul 2005 17:59:03 +0000 (17:59 +0000)
__cos, not sin and cos.

ChangeLog
sysdeps/ieee754/dbl-64/s_sincos.c

index 8506a15bb25680b5c3020e8743b9727076e38963..330b8ad78c1d06f0536375f1bcecd3b32c1e8a42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index f0542c500c29612ab4f6458b9efe3aa15c1a89bd..e946f9f976b3c7522b072d9fcd915f9a4855ad52 100644 (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)