[uClibc-cvs] svn commit: trunk/uClibc/libc/stdio

mjn3 at uclibc.org mjn3 at uclibc.org
Thu Mar 17 06:42:00 UTC 2005


Author: mjn3
Date: 2005-03-16 23:41:59 -0700 (Wed, 16 Mar 2005)
New Revision: 10035

Log:
Revert last commit.  If I had wanted to include that patch, I would have done
it myself at least a year and a half ago.


Modified:
   trunk/uClibc/libc/stdio/_fpmaxtostr.c


Changeset:
Modified: trunk/uClibc/libc/stdio/_fpmaxtostr.c
===================================================================
--- trunk/uClibc/libc/stdio/_fpmaxtostr.c	2005-03-16 23:22:01 UTC (rev 10034)
+++ trunk/uClibc/libc/stdio/_fpmaxtostr.c	2005-03-17 06:41:59 UTC (rev 10035)
@@ -205,7 +205,7 @@
 	__fpmax_t lower_bnd;
 	__fpmax_t upper_bnd = 1e9;
 #endif /* __UCLIBC_HAS_HEXADECIMAL_FLOATS__ */
-	volatile uint_fast32_t digit_block;
+	uint_fast32_t digit_block;
 #ifdef __UCLIBC_HAS_HEXADECIMAL_FLOATS__
 	uint_fast32_t base = 10;
 	const __fpmax_t *power_table;
@@ -221,9 +221,9 @@
 	int nblk2;			   /* This does not need to be initialized. */
 	const char *ts;		   /* This does not need to be initialized. */
 #endif /* __UCLIBC_HAS_GLIBC_DIGIT_GROUPING__ */
-	volatile int i, j;
+	int i, j;
 	int round, o_exp;
-	volatile int exp, exp_neg;
+	int exp, exp_neg;
 	int width, preci;
 	int cnt;
 	char *s;




More information about the uClibc-cvs mailing list