[Python-checkins] r71489 - python/branches/py3k-short-float-repr/Python/dtoa.c

mark.dickinson python-checkins at python.org
Sat Apr 11 18:56:56 CEST 2009


Author: mark.dickinson
Date: Sat Apr 11 18:56:56 2009
New Revision: 71489

Log:
Fix a couple more declarations


Modified:
   python/branches/py3k-short-float-repr/Python/dtoa.c

Modified: python/branches/py3k-short-float-repr/Python/dtoa.c
==============================================================================
--- python/branches/py3k-short-float-repr/Python/dtoa.c	(original)
+++ python/branches/py3k-short-float-repr/Python/dtoa.c	Sat Apr 11 18:56:56 2009
@@ -1305,8 +1305,7 @@
 }
 
 double
-_Py_dg_strtod
-(const char *s00, char **se)
+_Py_dg_strtod(const char *s00, char **se)
 {
     int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, e, e1, error;
     int esign, i, j, k, nd, nd0, nf, nz, nz0, sign;
@@ -2023,8 +2022,8 @@
    call to _Py_dg_freedtoa. */
 
 char *
-_Py_dg_dtoa
-(double dd, int mode, int ndigits, int *decpt, int *sign, char **rve)
+_Py_dg_dtoa(double dd, int mode, int ndigits,
+            int *decpt, int *sign, char **rve)
 {
     /*  Arguments ndigits, decpt, sign are similar to those
         of ecvt and fcvt; trailing zeros are suppressed from


More information about the Python-checkins mailing list