[Python-checkins] r65869 - python/trunk/Include/pymath.h
benjamin.peterson
python-checkins at python.org
Tue Aug 19 21:27:53 CEST 2008
Author: benjamin.peterson
Date: Tue Aug 19 21:27:53 2008
New Revision: 65869
Log:
fix a little typo
Modified:
python/trunk/Include/pymath.h
Modified: python/trunk/Include/pymath.h
==============================================================================
--- python/trunk/Include/pymath.h (original)
+++ python/trunk/Include/pymath.h Tue Aug 19 21:27:53 2008
@@ -19,7 +19,7 @@
*Note: PC/pyconfig.h defines copysign as _copysign
*/
#ifndef HAVE_COPYSIGN
-extern double copysign(doube, double);
+extern double copysign(double, double);
#endif
#ifndef HAVE_ACOSH
More information about the Python-checkins
mailing list