2001-06-24 David Edelsohn <dje@watson.ibm.com>
* libmath/stubs.c (sqrtf): Define.
(tanf): Correct typo.
From-SVN: r43532
+2001-06-24 David Edelsohn <dje@watson.ibm.com>
+
+ * libmath/stubs.c (sqrtf): Define.
+ (tanf): Correct typo.
+
2001-06-22 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/stl_iterator.h (reverse_iterator): Inherit from
}
#endif
+#ifndef _GLIBCPP_HAVE_SQRTF
+float
+sqrtf(float x)
+{
+ return (float) sqrt(x);
+}
+
#ifndef _GLIBCPP_HAVE_TANF
float
tanf(float x)
{
- return (float) tanf(x);
+ return (float) tan(x);
}
#endif