aboutsummaryrefslogtreecommitdiff
path: root/lib/msun/src/e_atan2.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-07-23 04:53:47 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-07-23 04:53:47 +0000
commit3819e84017471706d911eec3f1b3b6f9eefc139a (patch)
tree4a260472bb8a86bcc6fd933fe4725a9d0363f0b0 /lib/msun/src/e_atan2.c
parent461d4da338e648249b2aef1527f4a3a2575a498f (diff)
downloadsrc-3819e84017471706d911eec3f1b3b6f9eefc139a.tar.gz
src-3819e84017471706d911eec3f1b3b6f9eefc139a.zip
Only provide one copy of the math functions. If we provide a MD function,
do not also provide a __generic_XXX version as well. This is how we used to runtime select the generic vs i387 versions on the i386 platform. This saves a pile of #defines in the src/math_private.h file to undo the __generic_XXX renames in some of the *.c files.
Notes
Notes: svn path=/head/; revision=117912
Diffstat (limited to 'lib/msun/src/e_atan2.c')
-rw-r--r--lib/msun/src/e_atan2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/e_atan2.c b/lib/msun/src/e_atan2.c
index 61d49c7bc448..e9c98589c5bf 100644
--- a/lib/msun/src/e_atan2.c
+++ b/lib/msun/src/e_atan2.c
@@ -53,7 +53,7 @@ pi = 3.1415926535897931160E+00, /* 0x400921FB, 0x54442D18 */
pi_lo = 1.2246467991473531772E-16; /* 0x3CA1A626, 0x33145C07 */
double
-__generic___ieee754_atan2(double y, double x)
+__ieee754_atan2(double y, double x)
{
double z;
int32_t k,m,hx,hy,ix,iy;