[Python-checkins] r71705 - python/trunk/Python/pymath.c

mark.dickinson python-checkins at python.org
Sat Apr 18 16:13:58 CEST 2009


Author: mark.dickinson
Date: Sat Apr 18 16:13:43 2009
New Revision: 71705

Log:
copysign shouldn't be declared as static in pymath.c


Modified:
   python/trunk/Python/pymath.c

Modified: python/trunk/Python/pymath.c
==============================================================================
--- python/trunk/Python/pymath.c	(original)
+++ python/trunk/Python/pymath.c	Sat Apr 18 16:13:43 2009
@@ -35,7 +35,7 @@
 #endif /* HAVE_HYPOT */
 
 #ifndef HAVE_COPYSIGN
-static double
+double
 copysign(double x, double y)
 {
 	/* use atan2 to distinguish -0. from 0. */


More information about the Python-checkins mailing list