[Python-checkins] r71707 - in python/branches/release26-maint: Python/pymath.c

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


Author: mark.dickinson
Date: Sat Apr 18 16:19:58 2009
New Revision: 71707

Log:
Merged revisions 71705 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71705 | mark.dickinson | 2009-04-18 15:13:43 +0100 (Sat, 18 Apr 2009) | 2 lines
  
  copysign shouldn't be declared as static in pymath.c
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Python/pymath.c

Modified: python/branches/release26-maint/Python/pymath.c
==============================================================================
--- python/branches/release26-maint/Python/pymath.c	(original)
+++ python/branches/release26-maint/Python/pymath.c	Sat Apr 18 16:19:58 2009
@@ -22,7 +22,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