Changeset 388 for python/vendor/current/Include/pymath.h
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Include/pymath.h
r2 r388 3 3 4 4 #include "pyconfig.h" /* include for defines */ 5 6 #ifdef HAVE_STDINT_H7 #include <stdint.h>8 #endif9 5 10 6 /************************************************************************** … … 13 9 **************************************************************************/ 14 10 15 /* Python provides implementations for copysign, acosh, asinh, atanh,16 * log1p and hypot in Python/pymath.c just in case your math library doesn't17 * provide thefunctions.11 /* Python provides implementations for copysign, round and hypot in 12 * Python/pymath.c just in case your math library doesn't provide the 13 * functions. 18 14 * 19 15 *Note: PC/pyconfig.h defines copysign as _copysign … … 23 19 #endif 24 20 25 #ifndef HAVE_ACOSH 26 extern double acosh(double); 27 #endif 28 29 #ifndef HAVE_ASINH 30 extern double asinh(double); 31 #endif 32 33 #ifndef HAVE_ATANH 34 extern double atanh(double); 35 #endif 36 37 #ifndef HAVE_LOG1P 38 extern double log1p(double); 21 #ifndef HAVE_ROUND 22 extern double round(double); 39 23 #endif 40 24 … … 91 75 # define Py_FORCE_DOUBLE(X) (X) 92 76 # endif 77 #endif 78 79 #ifdef HAVE_GCC_ASM_FOR_X87 80 PyAPI_FUNC(unsigned short) _Py_get_387controlword(void); 81 PyAPI_FUNC(void) _Py_set_387controlword(unsigned short); 93 82 #endif 94 83
Note:
See TracChangeset
for help on using the changeset viewer.