summaryrefslogtreecommitdiffstats
path: root/Include/pymath.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-21 15:27:41 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-21 15:27:41 (GMT)
commitf371859a4f0705062e94798e21ebe3705d891a37 (patch)
treec4b520a35156bd0d6729980b1253a4ce04bf39c3 /Include/pymath.h
parent0f72d6c25fb3ff16b4c459221d56f87f221c59d0 (diff)
downloadcpython-f371859a4f0705062e94798e21ebe3705d891a37.zip
cpython-f371859a4f0705062e94798e21ebe3705d891a37.tar.gz
cpython-f371859a4f0705062e94798e21ebe3705d891a37.tar.bz2
Merged revisions 76978 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76978 | mark.dickinson | 2009-12-21 15:22:00 +0000 (Mon, 21 Dec 2009) | 3 lines Issue #7518: Move substitute definitions of C99 math functions from pymath.c to Modules/_math.c. ........
Diffstat (limited to 'Include/pymath.h')
-rw-r--r--Include/pymath.h22
1 files changed, 3 insertions, 19 deletions
diff --git a/Include/pymath.h b/Include/pymath.h
index dc2c427..e3cf22b 100644
--- a/Include/pymath.h
+++ b/Include/pymath.h
@@ -8,9 +8,9 @@ Symbols and macros to supply platform-independent interfaces to mathematical
functions and constants
**************************************************************************/
-/* Python provides implementations for copysign, acosh, asinh, atanh,
- * log1p and hypot in Python/pymath.c just in case your math library doesn't
- * provide the functions.
+/* Python provides implementations for copysign, round and hypot in
+ * Python/pymath.c just in case your math library doesn't provide the
+ * functions.
*
*Note: PC/pyconfig.h defines copysign as _copysign
*/
@@ -22,22 +22,6 @@ extern double copysign(double, double);
extern double round(double);
#endif
-#ifndef HAVE_ACOSH
-extern double acosh(double);
-#endif
-
-#ifndef HAVE_ASINH
-extern double asinh(double);
-#endif
-
-#ifndef HAVE_ATANH
-extern double atanh(double);
-#endif
-
-#ifndef HAVE_LOG1P
-extern double log1p(double);
-#endif
-
#ifndef HAVE_HYPOT
extern double hypot(double, double);
#endif